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