Remove ancient trunk folder from svn repository
[synfig.git] / synfig-core / src / tool / tool.nsh
diff --git a/synfig-core/src/tool/tool.nsh b/synfig-core/src/tool/tool.nsh
new file mode 100644 (file)
index 0000000..57ce8d3
--- /dev/null
@@ -0,0 +1,20 @@
+; The stuff to install
+Section "Synfig Tool"
+
+;  SectionIn RO
+  
+  ; Set output path to the installation directory.
+  SetOutPath "$INSTDIR\bin"
+  
+  ; Put file there
+  File "src\tool\.libs\synfig.exe"
+
+SectionEnd
+
+Section "un.Synfig Tool Uninstall"
+       Delete "$INSTDIR\bin\synfig.exe"
+       RMDir "$INSTDIR\bin"
+       RMDir "$INSTDIR"
+SectionEnd
+
+