X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftags%2Fstable%2Fsrc%2Fmodules%2Fmod_gif%2Fmod_gif.nsh;fp=synfig-core%2Ftags%2Fstable%2Fsrc%2Fmodules%2Fmod_gif%2Fmod_gif.nsh;h=a11d38b54c857b72f968dcfefa87089e5a948b5a;hb=d3408370fc3297609b3aa8d4ff7edf1f238df251;hp=0000000000000000000000000000000000000000;hpb=9f067badc4463e2ad6363dfe9b8c4fc28b0ec503;p=synfig.git diff --git a/synfig-core/tags/stable/src/modules/mod_gif/mod_gif.nsh b/synfig-core/tags/stable/src/modules/mod_gif/mod_gif.nsh new file mode 100644 index 0000000..a11d38b --- /dev/null +++ b/synfig-core/tags/stable/src/modules/mod_gif/mod_gif.nsh @@ -0,0 +1,21 @@ +; The stuff to install +Section "mod_gif" Sec_mod_gif + +; SectionIn RO + + ; Set output path to the installation directory. + SetOutPath "$INSTDIR\lib\synfig\modules" + + ; Put file there + File /oname=mod_gif.dll "src\modules\mod_gif\.libs\libmod_gif-0.dll" + + + FileOpen $0 $INSTDIR\etc\synfig_modules.cfg a + FileSeek $0 0 END + FileWrite $0 "mod_gif" + FileWriteByte $0 "13" + FileWriteByte $0 "10" + FileClose $0 + +SectionEnd +