mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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
51 lines
1.8 KiB
Batchfile
51 lines
1.8 KiB
Batchfile
@echo off
|
|
|
|
rem Setup environment
|
|
call "%~dp0env.bat" %1 %2 %3
|
|
|
|
rem Define path to project file
|
|
set "PRJFILE=%~dp0\adm\msvc\%VCVER%\OCCT.sln"
|
|
if not exist "%PRJFILE%" set "PRJFILE=%~dp0\adm\msvc\%VCVER%\Products.sln"
|
|
if not "%4" == "" (
|
|
set "PRJFILE=%4"
|
|
)
|
|
|
|
set "VisualStudioExpressName=VCExpress"
|
|
|
|
if not "%DevEnvDir%" == "" (
|
|
rem If DevEnvDir is already defined (e.g. in custom.bat), use that value
|
|
) else if /I "%VCFMT%" == "vc8" (
|
|
set "DevEnvDir=%VS80COMNTOOLS%..\IDE"
|
|
) else if /I "%VCFMT%" == "vc9" (
|
|
set "DevEnvDir=%VS90COMNTOOLS%..\IDE"
|
|
) else if /I "%VCFMT%" == "vc10" (
|
|
set "DevEnvDir=%VS100COMNTOOLS%..\IDE"
|
|
) else if /I "%VCFMT%" == "vc11" (
|
|
set "DevEnvDir=%VS110COMNTOOLS%..\IDE"
|
|
rem Visual Studio Express starting from VS 2012 is called "for Windows Desktop"
|
|
rem and has a new name for executable - WDExpress
|
|
set "VisualStudioExpressName=WDExpress"
|
|
) else if /I "%VCFMT%" == "vc12" (
|
|
set "DevEnvDir=%VS120COMNTOOLS%..\IDE"
|
|
set "VisualStudioExpressName=WDExpress"
|
|
) else if /I "%VCFMT%" == "vc14" (
|
|
set "DevEnvDir=%VS140COMNTOOLS%..\IDE"
|
|
) else if /I "%VCFMT%" == "vc141" (
|
|
for /f "usebackq delims=" %%i in (`vswhere.exe -version "[15.0,15.99]" -requires Microsoft.VisualStudio.Workload.%VCPROP% -property installationPath`) do (
|
|
set DevEnvDir=%%i\Common7\IDE
|
|
)
|
|
) else (
|
|
echo Error: wrong VS identifier
|
|
exit /B
|
|
)
|
|
|
|
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
|
if exist "%DevEnvDir%\devenv.exe" (
|
|
start "" "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
|
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
|
start "" "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
|
) else (
|
|
echo Error: Could not find MS Visual Studio ^(%VCVER%^)
|
|
echo For VS 2010-2015, check relevant environment variable ^(e.g. VS100COMNTOOLS^)
|
|
)
|