X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=inline;f=synfig-core%2Ftags%2Fsynfig_0_61_07_rc2%2Fsrc%2Fmodules%2Ftemplate.nsh;fp=synfig-core%2Ftags%2Fsynfig_0_61_07_rc2%2Fsrc%2Fmodules%2Ftemplate.nsh;h=bc6ede8bc2b91a5ceff353b9d01f2e4f41f3e181;hb=3078b7103aa069392b711486dbc1eaf6d4804acc;hp=0000000000000000000000000000000000000000;hpb=1d8dc189e3174b7e3c28c865828aecc6bee6d8a3;p=synfig.git diff --git a/synfig-core/tags/synfig_0_61_07_rc2/src/modules/template.nsh b/synfig-core/tags/synfig_0_61_07_rc2/src/modules/template.nsh new file mode 100644 index 0000000..bc6ede8 --- /dev/null +++ b/synfig-core/tags/synfig_0_61_07_rc2/src/modules/template.nsh @@ -0,0 +1,21 @@ +; The stuff to install +Section "@MODNAME@" Sec_@MODNAME@ + +; SectionIn RO + + ; Set output path to the installation directory. + SetOutPath "$INSTDIR\lib\synfig\modules" + + ; Put file there + File /oname=@MODNAME@.dll "src\modules\@MODNAME@\.libs\lib@MODNAME@-0.dll" + + + FileOpen $0 $INSTDIR\etc\synfig_modules.cfg a + FileSeek $0 0 END + FileWrite $0 "@MODNAME@" + FileWriteByte $0 "13" + FileWriteByte $0 "10" + FileClose $0 + +SectionEnd +