]> Creatis software - creaToolsTools.git/blobdiff - Install/scripts/creaTools/creaToolsVariables.bat
EED
[creaToolsTools.git] / Install / scripts / creaTools / creaToolsVariables.bat
index 218d9d1ffc583028a44b63cdc27af347f357342d..cbe87d81f50003a01adfd23c910ded1345a9a4d2 100644 (file)
@@ -1,13 +1,61 @@
+REM ---------------------------------------------------------------------
+REM
+REM Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
+REM                        pour la Santé)
+REM Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+REM
+REM  This software is governed by the CeCILL-B license under French law and 
+REM  abiding by the rules of distribution of free software. You can  use, 
+REM  modify and/ or redistribute the software under the terms of the CeCILL-B 
+REM  license as circulated by CEA, CNRS and INRIA at the following URL 
+REM  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
+REM  or in the file LICENSE.txt.
+REM
+REM  As a counterpart to the access to the source code and  rights to copy,
+REM  modify and redistribute granted by the license, users are provided only
+REM  with a limited warranty  and the software's author,  the holder of the
+REM  economic rights,  and the successive licensors  have only  limited
+REM  liability. 
+REM
+REM  The fact that you are presently reading this means that you have had
+REM  knowledge of the CeCILL-B license and that you accept its terms.
+REM ------------------------------------------------------------------------  
+
 @echo off
 echo ----------------------------
 echo ---creaToolVariables.bat----
 echo ----------------------------
 
-echo %1 = creatoolsGeneration
-echo %2 = creatoolssource
-echo %3 = docgeneration
+set creatoolsGeneration=%1
+set creatoolssource=%2
+set docgeneration=%3
+set buildType=%4
+set forcex86=%5
+
+echo creatoolsGeneration = %creatoolsGeneration%
+echo creatoolssource = %creatoolssource%
+echo docgeneration = %docgeneration%
+echo buildType = %buildType%
+echo forcex86 = %forcex86%
+
+
 
 set binfolder=%1\creatools_bin\%2Bin
 cd %binfolder%
 
-cmake -D CREATOOLS_SOURCE_PATH:PATH=%1\creatools_install CMakeCache.txt
+IF %4==Debug (
+       cmake -D WXWIDGETS_USE_DEBUG:BOOL=ON CMakeCache.txt
+)
+
+if %forcex86%==ON (
+       set buildPlatform=win32
+) else (
+       if %PROCESSOR_ARCHITECTURE%==x86 (
+               set buildPlatform=win32
+       ) else (
+               set buildPlatform=win64
+       )
+)
+
+cmake -D CREATOOLS_BUILDTYPE:STRING=%buildType% -D CREATOOLS_PLATFORM:STRING=%buildPlatform%  CMakeCache.txt
+cmake -D CREATOOLS_SOURCE_PATH:PATH=%creatoolsGeneration%\creatools_install CMakeCache.txt