From 2def3c03b881fc86990ba2c8c94e2f4a6ab949d6 Mon Sep 17 00:00:00 2001 From: wmayer Date: Wed, 25 Jun 2014 18:56:50 +0200 Subject: [PATCH] + update x64 installer --- src/WindowsInstaller/FreeCAD_x64_WindowsInstaller.nsi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/WindowsInstaller/FreeCAD_x64_WindowsInstaller.nsi b/src/WindowsInstaller/FreeCAD_x64_WindowsInstaller.nsi index 82e36e2cb..975a4843e 100644 --- a/src/WindowsInstaller/FreeCAD_x64_WindowsInstaller.nsi +++ b/src/WindowsInstaller/FreeCAD_x64_WindowsInstaller.nsi @@ -90,6 +90,8 @@ section "FreeCAD (Required)" setOutPath $INSTDIR\bin # Files added here should be removed by the uninstaller (see section "uninstall") file /r /X *.idb /X *.pyc /X *.pyo "..\..\bin\" + setOutPath $INSTDIR\lib + file /r /X *.lib /X *.pyc /X *.pyo "..\..\lib\" setOutPath $INSTDIR\Mod file /r /X *.idb "..\..\Mod\" setOutPath $INSTDIR\doc @@ -173,6 +175,7 @@ section "Uninstall" # Remove files RMDir /r "$INSTDIR\bin" + RMDir /r "$INSTDIR\lib" RMDir /r "$INSTDIR\doc" RMDir /r "$INSTDIR\data" RMDir /r "$INSTDIR\Mod"