X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftags%2Fsynfig_0_61_04%2Fsynfig-core%2Fsrc%2Ftool%2Ftool.nsh;fp=synfig-core%2Ftags%2Fsynfig_0_61_04%2Fsynfig-core%2Fsrc%2Ftool%2Ftool.nsh;h=472788ea36f680b5e4c7d4ec7805c53cc3130dc5;hb=f64373f72487d6aa502d9bde985b8a2d5519f099;hp=0000000000000000000000000000000000000000;hpb=ad81c2528eb79c7500e65fd15a9f66375f75d121;p=synfig.git diff --git a/synfig-core/tags/synfig_0_61_04/synfig-core/src/tool/tool.nsh b/synfig-core/tags/synfig_0_61_04/synfig-core/src/tool/tool.nsh new file mode 100644 index 0000000..472788e --- /dev/null +++ b/synfig-core/tags/synfig_0_61_04/synfig-core/src/tool/tool.nsh @@ -0,0 +1,19 @@ +; 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" +SectionEnd + +