X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Fsrc%2Ftool%2Ftool.nsh;fp=synfig-core%2Fsrc%2Ftool%2Ftool.nsh;h=57ce8d3cb9703237699920c742dd1dccafd0d6ce;hb=a095981e18cc37a8ecc7cd237cc22b9c10329264;hp=0000000000000000000000000000000000000000;hpb=9459638ad6797b8139f1e9f0715c96076dbf0890;p=synfig.git diff --git a/synfig-core/src/tool/tool.nsh b/synfig-core/src/tool/tool.nsh new file mode 100644 index 0000000..57ce8d3 --- /dev/null +++ b/synfig-core/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 + +