0027127: Implementation of compilation of OCCT Products samples on all platforms...
[occt.git] / samples / qt / FuncDemo / msvc.bat
CommitLineData
aff5997d 1@echo off
2
4b3541c6 3Setlocal EnableDelayedExpansion
4
aff5997d 5rem Setup environment
6call "%~dp0env.bat" %1 %2 %3
7
8rem Define path to project file
caee72a9 9set "PRJFILE=%~dp0FuncDemo.sln"
aff5997d 10
11set "VisualStudioExpressName=VCExpress"
12
caee72a9 13if /I "%VCVER%" == "vc10" (
aff5997d 14 set "DevEnvDir=%VS100COMNTOOLS%..\IDE"
4b3541c6 15) else if /I "%VCVER%" == "vc11" (
aff5997d 16 set "DevEnvDir=%VS110COMNTOOLS%..\IDE"
17 rem Visual Studio Express starting from VS 2012 is called "for Windows Desktop"
18 rem and has a new name for executable - WDExpress
19 set "VisualStudioExpressName=WDExpress"
4b3541c6 20) else if /I "%VCVER%" == "vc12" (
aff5997d 21 set "DevEnvDir=%VS120COMNTOOLS%..\IDE"
22 set "VisualStudioExpressName=WDExpress"
caee72a9 23) else if /I "%VCVER%" == "vc14" (
24 set "DevEnvDir=%VS140COMNTOOLS%..\IDE"
25 set "VisualStudioExpressName=WDExpress"
aff5997d 26) else (
27 echo Error: wrong VS identifier
28 exit /B
29)
30
31rem Launch Visual Studio - either professional (devenv) or Express, as available
32if exist "%DevEnvDir%\devenv.exe" (
33 start "%DevEnvDir%\devenv.exe" "%PRJFILE%"
34) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
35 start "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
36) else (
37 echo Error: Could not find MS Visual Studio ^(%VCVER%^)
693c4bbe 38 echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
aff5997d 39)