]> Creatis software - creaToolsTools.git/blobdiff - Install_ThirdParty/scripts/install_thirdparty_dlls_cmake.bat
Feature #1956 Add Version file in final install + link in menu windows
[creaToolsTools.git] / Install_ThirdParty / scripts / install_thirdparty_dlls_cmake.bat
index 4dcafb0e586cb4089b8585d4d799d8346ebad50f..d6b08558371833abab72657cb3825bd6ae16f08b 100644 (file)
@@ -29,7 +29,6 @@ set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 10.0\VC\vcvarsall.
 set thirdpartydllspath=%thirdpartyGeneration%\thirdparty_temp\creaThirdParty_dlls
 set sourcepath=%thirdparty_cmake%\crea_ThirdParty_dlls
 set binpath=%thirdpartyGeneration%\thirdparty_bin\%buildType%\crea_ThirdParty_dlls_Bin
-set installpath="ProgramFilesPath_x86\creatools\crea_ThirdParty_dlls"
 
 if not exist %vcvarsall% set zipPath="%ProgramFilesPath_x64%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
 if not exist %vcvarsall% (
@@ -39,28 +38,36 @@ if not exist %vcvarsall% (
 
 if %x86Comp%==ON (
        call %vcvarsall%
+       set installpath="%ProgramFilesPath_x86%\creatools\crea_ThirdParty_dlls"
        echo "Compilation forced x86"
 ) else (
        if %PROCESSOR_ARCHITECTURE%==x86 (
                call %vcvarsall%
+               set installpath="%ProgramFilesPath_x86%\creatools\crea_ThirdParty_dlls"
        ) else (
                call %vcvarsall% amd64
+               set installpath="%ProgramFiles%\creatools\crea_ThirdParty_dlls"
        )
 )
 
+rmdir /S /Q %binpath%
 mkdir %binpath%
 cd %binpath%
 
 if %x86Comp%==ON (
+       set buildPlatform=win32
        cmake -G"Visual Studio 10"  -H%sourcepath% -B%binpath%
 ) else (
        if %PROCESSOR_ARCHITECTURE%==x86 (
+               set buildPlatform=win32
                cmake -G"Visual Studio 10"  -H%sourcepath% -B%binpath%
        ) else (
+               set buildPlatform=win64
                cmake -G"Visual Studio 10 Win64"  -H%sourcepath% -B%binpath%
        )
 )
 
+cmake -D CREATOOLS_BUILDTYPE:STRING=%buildType% -D CREATOOLS_PLATFORM:STRING=%buildPlatform%  CMakeCache.txt
 cmake -D CMAKE_INSTALL_PREFIX:PATH=%installpath% CMakeCache.txt
 cmake -D CREA_LIBRARY_DLL_PATH:PATH=%thirdpartydllspath% CMakeCache.txt
 cmake CMakeCache.txt