X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftags%2Fstable%2Fsrc%2Ftool%2Ftool.nsh;fp=synfig-core%2Ftags%2Fstable%2Fsrc%2Ftool%2Ftool.nsh;h=57ce8d3cb9703237699920c742dd1dccafd0d6ce;hb=391f6a3be479646721d8cc78b5ee673db17bd540;hp=0000000000000000000000000000000000000000;hpb=ce9ddb9d0e877117ef8648f901f0c7db9eca3d79;p=synfig.git diff --git a/synfig-core/tags/stable/src/tool/tool.nsh b/synfig-core/tags/stable/src/tool/tool.nsh new file mode 100644 index 0000000..57ce8d3 --- /dev/null +++ b/synfig-core/tags/stable/src/tool/tool.nsh @@ -0,0 +1,20 @@ +; The stuff to install +Section "Synfig Tool" + +; SectionIn RO + + ; Set output path to the installation directory. + SetOutPath "$INSTDIR\bin" + + ; Put file there + File "src\tool\.libs\synfig.exe" + +SectionEnd + +Section "un.Synfig Tool Uninstall" + Delete "$INSTDIR\bin\synfig.exe" + RMDir "$INSTDIR\bin" + RMDir "$INSTDIR" +SectionEnd + +