Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / stable / src / synfig / synfig.nsh
1 ; The stuff to install
2 Section "Synfig Core"
3
4   SectionIn RO
5   
6   ; Set output path to the installation directory.
7   SetOutPath "$INSTDIR\bin"
8   
9   ; Put file there
10   File "src\synfig\.libs\libsynfig-0.dll"
11
12 SectionEnd
13
14 Section "un.Synfig Core"
15         Delete "$INSTDIR\bin\libsynfig-0.dll"
16         RMDir "$INSTDIR\bin"
17         RMDir "$INSTDIR"
18 SectionEnd
19
20