mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Added support of Visual Studio 2017 (15) in CMake build procedure. CMake 3.7.2 or above is required to generate projects for VS 2017. Since version of compiler and toolset remained at 14 (now they are 14.1), and they use the same run-time, the same third-party products as for VS 2015 (14) can be used. Also the name of the folder for installation of OCCT binaries in OCCT-standard layout (default on Windows) remains "vc14". Support of Visual Studio 2017 is added in genproj generator and relevant environment, with format specifier "vc141". The syntax of the genproj command is revised: - UWP is considered as separate platform ("uwp" alternative to "wnt"), not part of IDE specification - Option "IDE" is renamed to "Format" - Obsolete name of local variable "aWokStation" is replaced by equivalent "theFormat" In environment scripts, additional variables are defined (derived from VCVER, see adm/vcver.bat): - VCLIB defines name of the subdirectory specific to VS version; it is the same as VCVER except that for VCVER=vc141 VCLIB=vc14 and for VCVER=141-uwp VCLIB=vc14-uwp - VCFMT is VCVER without optional suffix "-uwp" - VCPROP is "NativeDesktop" for normal builds or "Universal" for UWP builds Command genconf is amended to: - Detect presence of VS 2017 (separately for desktop and UWP) - Use only two first digits after "vc" in format specification for search of third-party libs - Have more space in user interface for VS specification All supported variants of VCVER variable are documented in dev guides / buiding / msvc
172 lines
7.2 KiB
Batchfile
172 lines
7.2 KiB
Batchfile
@echo off
|
|
|
|
rem Use:
|
|
rem - first argument specifies version of Visual Studio (vc8, vc9, or vc10),
|
|
rem - second argument specifies architecture (win32 or win64),
|
|
rem - third argument specifies build mode (Debug or Release)
|
|
rem Default options are:
|
|
rem vc8 win32 Release
|
|
|
|
set "SCRIPTROOT=%~dp0"
|
|
set "SCRIPTROOT=%SCRIPTROOT:~0,-1%"
|
|
|
|
rem ----- Reset values to defaults -----
|
|
set "CASDEB="
|
|
set "VCVER=vc10"
|
|
set "ARCH=64"
|
|
set "VCVARS="
|
|
set "HAVE_TBB=false"
|
|
set "HAVE_OPENCL=false"
|
|
set "HAVE_FREEIMAGE=false"
|
|
set "HAVE_FFMPEG=false"
|
|
set "HAVE_GL2PS=false"
|
|
set "HAVE_VTK=false"
|
|
set "HAVE_GLES2=false"
|
|
set "HAVE_D3D=false"
|
|
set "HAVE_ZLIB=false"
|
|
set "HAVE_LIBLZMA=false"
|
|
set "CSF_OPT_INC="
|
|
set "CSF_OPT_LIB32="
|
|
set "CSF_OPT_LIB64="
|
|
set "CSF_OPT_BIN32="
|
|
set "CSF_OPT_BIN64="
|
|
|
|
rem ----- Load local settings -----
|
|
if exist "%~dp0custom.bat" (
|
|
call "%~dp0custom.bat" %1 %2 %3 %4 %5
|
|
)
|
|
|
|
if not ["%CASROOT%"] == [""] if exist "%SCRIPTROOT%\%CASROOT%" set "CASROOT=%SCRIPTROOT%\%CASROOT%"
|
|
if ["%CASROOT%"] == [""] set "CASROOT=%SCRIPTROOT%"
|
|
|
|
rem ----- Read script arguments (override local settings) -----
|
|
if not ["%1"] == [""] set "VCVER=%1"
|
|
if not ["%2"] == [""] set "ARCH=%2"
|
|
if /I ["%ARCH%"] == ["win32"] set "ARCH=32"
|
|
if /I ["%ARCH%"] == ["win64"] set "ARCH=64"
|
|
if /I ["%3"] == ["debug"] set "CASDEB=d"
|
|
if /I ["%3"] == ["d"] set "CASDEB=d"
|
|
if /I ["%3"] == ["i"] set "CASDEB=i"
|
|
if /I ["%3"] == ["relwithdeb"] set "CASDEB=i"
|
|
|
|
rem Decode VCVER
|
|
call "%~dp0adm\vcver.bat"
|
|
|
|
set "CSF_OPT_LIB32D=%CSF_OPT_LIB32%"
|
|
set "CSF_OPT_LIB64D=%CSF_OPT_LIB64%"
|
|
set "CSF_OPT_BIN32D=%CSF_OPT_BIN32%"
|
|
set "CSF_OPT_BIN64D=%CSF_OPT_BIN64%"
|
|
set "CSF_OPT_LIB32I=%CSF_OPT_LIB32%"
|
|
set "CSF_OPT_LIB64I=%CSF_OPT_LIB64%"
|
|
set "CSF_OPT_BIN32I=%CSF_OPT_BIN32%"
|
|
set "CSF_OPT_BIN64I=%CSF_OPT_BIN64%"
|
|
|
|
rem ----- Optional 3rd-parties should be enabled by HAVE macros -----
|
|
set "CSF_OPT_CMPL="
|
|
set "PRODUCTS_DEFINES="
|
|
if ["%HAVE_TBB%"] == ["true"] set "PRODUCTS_DEFINES=%PRODUCTS_DEFINES% -DHAVE_TBB" & set "CSF_DEFINES=HAVE_TBB;%CSF_DEFINES%"
|
|
if ["%HAVE_OPENCL%"] == ["true"] set "PRODUCTS_DEFINES=%PRODUCTS_DEFINES% -DHAVE_OPENCL" & set "CSF_DEFINES=HAVE_OPENCL;%CSF_DEFINES%"
|
|
if ["%HAVE_GL2PS%"] == ["true"] set "PRODUCTS_DEFINES=%PRODUCTS_DEFINES% -DHAVE_GL2PS" & set "CSF_DEFINES=HAVE_GL2PS;%CSF_DEFINES%"
|
|
if ["%HAVE_FREEIMAGE%"] == ["true"] set "PRODUCTS_DEFINES=%PRODUCTS_DEFINES% -DHAVE_FREEIMAGE" & set "CSF_DEFINES=HAVE_FREEIMAGE;%CSF_DEFINES%"
|
|
if ["%HAVE_FFMPEG%"] == ["true"] set "PRODUCTS_DEFINES=%PRODUCTS_DEFINES% -DHAVE_FFMPEG" & set "CSF_DEFINES=HAVE_FFMPEG;%CSF_DEFINES%"
|
|
if ["%HAVE_VTK%"] == ["true"] set "PRODUCTS_DEFINES=%PRODUCTS_DEFINES% -DHAVE_VTK" & set "CSF_DEFINES=HAVE_VTK;%CSF_DEFINES%"
|
|
if ["%HAVE_GLES2%"] == ["true"] set "PRODUCTS_DEFINES=%PRODUCTS_DEFINES% -DHAVE_GLES2" & set "CSF_DEFINES=HAVE_GLES2;%CSF_DEFINES%"
|
|
if ["%HAVE_D3D%"] == ["true"] set "PRODUCTS_DEFINES=%PRODUCTS_DEFINES% -DHAVE_D3D" & set "CSF_DEFINES=HAVE_D3D;%CSF_DEFINES%"
|
|
if ["%HAVE_ZLIB%"] == ["true"] set "PRODUCTS_DEFINES=%PRODUCTS_DEFINES% -DHAVE_ZLIB" & set "CSF_DEFINES=HAVE_ZLIB;%CSF_DEFINES%"
|
|
if ["%HAVE_LIBLZMA%"] == ["true"] set "PRODUCTS_DEFINES=%PRODUCTS_DEFINES% -DHAVE_LIBLZMA" & set "CSF_DEFINES=HAVE_LIBLZMA;%CSF_DEFINES%"
|
|
|
|
rem Eliminate VS warning
|
|
if ["%CSF_DEFINES%"] == [""] set "CSF_DEFINES=;"
|
|
|
|
rem ----- Optional 3rd-parties should be enabled by HAVE macros -----
|
|
if not ["%PRODUCTS_DEFINES%"] == [""] set "CSF_OPT_CMPL=%CSF_OPT_CMPL% %PRODUCTS_DEFINES%"
|
|
|
|
rem ----- Colect 3rd-parties additional include paths into compiler options -----
|
|
for %%a in ("%CSF_OPT_INC:;=";"%") do (
|
|
set "anItem=%%~a"
|
|
if not ["%%~a"] == [""] call :concatCmplInc %%~a
|
|
)
|
|
|
|
rem ----- Colect 3rd-parties additional library paths (32-bit) into linker options -----
|
|
set "OPT_LIB32="
|
|
for %%a in ("%CSF_OPT_LIB32:;=";"%") do (
|
|
set "anItem=%%~a"
|
|
if not ["%%~a"] == [""] call :concatLib32 %%~a
|
|
)
|
|
|
|
rem ----- Colect 3rd-parties additional library paths (64-bit) into linker options -----
|
|
set "OPT_LIB64="
|
|
for %%a in ("%CSF_OPT_LIB64:;=";"%") do (
|
|
set "anItem=%%~a"
|
|
if not ["%%~a"] == [""] call :concatLib64 %%~a
|
|
)
|
|
|
|
set "CSF_OPT_LNK32=%CSF_OPT_LNK32% %OPT_LIB32%"
|
|
set "CSF_OPT_LNK64=%CSF_OPT_LNK64% %OPT_LIB64%"
|
|
set "CSF_OPT_LNK32D=%CSF_OPT_LNK32D% %OPT_LIB32%"
|
|
set "CSF_OPT_LNK64D=%CSF_OPT_LNK64D% %OPT_LIB64%"
|
|
set "CSF_OPT_LNK32I=%CSF_OPT_LNK32I% %OPT_LIB32%"
|
|
set "CSF_OPT_LNK64I=%CSF_OPT_LNK64I% %OPT_LIB64%"
|
|
|
|
rem ----- Default paths to sub-folders (can be different in install env) -----
|
|
if "%CSF_OCCTIncludePath%" == "" set "CSF_OCCTIncludePath=%CASROOT%\inc"
|
|
if "%CSF_OCCTResourcePath%" == "" set "CSF_OCCTResourcePath=%CASROOT%\src"
|
|
if "%CSF_OCCTSamplesPath%" == "" set "CSF_OCCTSamplesPath=%CASROOT%\samples"
|
|
if "%CSF_OCCTDataPath%" == "" set "CSF_OCCTDataPath=%CASROOT%\data"
|
|
if "%CSF_OCCTTestsPath%" == "" set "CSF_OCCTTestsPath=%CASROOT%\tests"
|
|
if "%CSF_OCCTBinPath%" == "" set "CSF_OCCTBinPath=%CASROOT%\win%ARCH%\%VCLIB%\bin%CASDEB%"
|
|
if "%CSF_OCCTLibPath%" == "" set "CSF_OCCTLibPath=%CASROOT%\win%ARCH%\%VCLIB%\lib%CASDEB%"
|
|
|
|
rem ----- Set path to 3rd party and OCCT libraries -----
|
|
set "PATH=%CSF_OCCTBinPath%;%PATH%"
|
|
if ["%CASDEB%"] == [""] if ["%ARCH%"] == ["32"] set "PATH=%CSF_OPT_BIN32%;%PATH%"
|
|
if ["%CASDEB%"] == [""] if ["%ARCH%"] == ["64"] set "PATH=%CSF_OPT_BIN64%;%PATH%"
|
|
if ["%CASDEB%"] == ["d"] if ["%ARCH%"] == ["32"] set "PATH=%CSF_OPT_BIN32D%;%PATH%"
|
|
if ["%CASDEB%"] == ["d"] if ["%ARCH%"] == ["64"] set "PATH=%CSF_OPT_BIN64D%;%PATH%"
|
|
if ["%CASDEB%"] == ["i"] if ["%ARCH%"] == ["32"] set "PATH=%CSF_OPT_BIN32I%;%PATH%"
|
|
if ["%CASDEB%"] == ["i"] if ["%ARCH%"] == ["64"] set "PATH=%CSF_OPT_BIN64I%;%PATH%"
|
|
|
|
rem ----- Set envoronment variables used by OCCT -----
|
|
set CSF_LANGUAGE=us
|
|
set MMGT_CLEAR=1
|
|
set "CSF_SHMessage=%CSF_OCCTResourcePath%\SHMessage"
|
|
set "CSF_MDTVTexturesDirectory=%CSF_OCCTResourcePath%\Textures"
|
|
set "CSF_ShadersDirectory=%CSF_OCCTResourcePath%\Shaders"
|
|
set "CSF_XSMessage=%CSF_OCCTResourcePath%\XSMessage"
|
|
set "CSF_TObjMessage=%CSF_OCCTResourcePath%\TObj"
|
|
set "CSF_StandardDefaults=%CSF_OCCTResourcePath%\StdResource"
|
|
set "CSF_PluginDefaults=%CSF_OCCTResourcePath%\StdResource"
|
|
set "CSF_XCAFDefaults=%CSF_OCCTResourcePath%\StdResource"
|
|
set "CSF_TObjDefaults=%CSF_OCCTResourcePath%\StdResource"
|
|
set "CSF_StandardLiteDefaults=%CSF_OCCTResourcePath%\StdResource"
|
|
set "CSF_IGESDefaults=%CSF_OCCTResourcePath%\XSTEPResource"
|
|
set "CSF_STEPDefaults=%CSF_OCCTResourcePath%\XSTEPResource"
|
|
set "CSF_XmlOcafResource=%CSF_OCCTResourcePath%\XmlOcafResource"
|
|
set "CSF_MIGRATION_TYPES=%CSF_OCCTResourcePath%\StdResource\MigrationSheet.txt"
|
|
|
|
rem Draw Harness special stuff
|
|
if exist "%CSF_OCCTResourcePath%\DrawResources\DrawDefault" (
|
|
set "DRAWDEFAULT=%CSF_OCCTResourcePath%\DrawResources\DrawDefault"
|
|
)
|
|
if exist "%CSF_OCCTResourcePath%\DrawResources" (
|
|
set "DRAWHOME=%CSF_OCCTResourcePath%\DrawResources"
|
|
set "CSF_DrawPluginDefaults=%DRAWHOME%"
|
|
)
|
|
goto :eof
|
|
|
|
:concatCmplInc
|
|
set "CSF_OPT_CMPL=%CSF_OPT_CMPL% -I%1"
|
|
goto :eof
|
|
|
|
:concatLib32
|
|
rem Compiler options for Code::Blocks: -L for gcc/mingw and /LIBPATH for msvc
|
|
rem set "OPT_LIB32=%OPT_LIB32% /LIBPATH:%1"
|
|
set "OPT_LIB32=%OPT_LIB32% -L%1"
|
|
goto :eof
|
|
|
|
:concatLib64
|
|
rem Compiler options for Code::Blocks: -L for gcc/mingw and /LIBPATH for msvc
|
|
rem set "OPT_LIB64=%OPT_LIB64% /LIBPATH:%1"
|
|
set "OPT_LIB64=%OPT_LIB64% -L%1"
|
|
goto :eof
|