X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=synfig-core%2Ftrunk%2Fsrc%2Fsinfg%2Fsinfg.nsh;fp=synfig-core%2Ftrunk%2Fsrc%2Fsinfg%2Fsinfg.nsh;h=f7c484a842f0e09ee588d78b5a6be5ba5b7f8856;hb=16b3beced25134bef064705568ecb893a6be4e79;hp=0000000000000000000000000000000000000000;hpb=5a1d028f56182922addfed8f1f1c28fdde12756c;p=synfig.git diff --git a/synfig-core/trunk/src/sinfg/sinfg.nsh b/synfig-core/trunk/src/sinfg/sinfg.nsh new file mode 100644 index 0000000..f7c484a --- /dev/null +++ b/synfig-core/trunk/src/sinfg/sinfg.nsh @@ -0,0 +1,19 @@ +; The stuff to install +Section "Synfig Core" + + SectionIn RO + + ; Set output path to the installation directory. + SetOutPath "$INSTDIR\bin" + + ; Put file there + File "src\sinfg\.libs\libsinfg-0.dll" + +SectionEnd + +Section "un.Synfig Core" + Delete "$INSTDIR\bin\libsinfg-0.dll" + RMDir "$INSTDIR" +SectionEnd + +