Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / synfig_0_61_03 / synfig-core / src / tool / tool.nsh
1 ; The stuff to install
2 Section "Synfig Tool"
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\tool\.libs\synfig.exe"
11
12 SectionEnd
13
14 Section "un.Synfig Tool Uninstall"
15         Delete "$INSTDIR\bin\synfig.exe"
16         RMDir "$INSTDIR"
17 SectionEnd
18
19