0027176: Configuration, CMake - INSTALL_DIR is a common prefix for all other install...
[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
9set "PRJFILE=%~dp0FuncDemo-%VCVER%.sln"
10
11set "VisualStudioExpressName=VCExpress"
12
4b3541c6 13if /I "%VCVER%" == "vc8" (
aff5997d 14 set "DevEnvDir=%VS80COMNTOOLS%..\IDE"
4b3541c6 15) else if /I "%VCVER%" == "vc9" (
aff5997d 16 set "DevEnvDir=%VS90COMNTOOLS%..\IDE"
4b3541c6 17) else if /I "%VCVER%" == "vc10" (
aff5997d 18 set "DevEnvDir=%VS100COMNTOOLS%..\IDE"
4b3541c6 19) else if /I "%VCVER%" == "vc11" (
aff5997d 20 set "DevEnvDir=%VS110COMNTOOLS%..\IDE"
21 rem Visual Studio Express starting from VS 2012 is called "for Windows Desktop"
22 rem and has a new name for executable - WDExpress
23 set "VisualStudioExpressName=WDExpress"
4b3541c6 24) else if /I "%VCVER%" == "vc12" (
aff5997d 25 set "DevEnvDir=%VS120COMNTOOLS%..\IDE"
26 set "VisualStudioExpressName=WDExpress"
27) else (
28 echo Error: wrong VS identifier
29 exit /B
30)
31
32rem Launch Visual Studio - either professional (devenv) or Express, as available
33if exist "%DevEnvDir%\devenv.exe" (
34 start "%DevEnvDir%\devenv.exe" "%PRJFILE%"
35) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
36 start "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
37) else (
38 echo Error: Could not find MS Visual Studio ^(%VCVER%^)
39 echo Check relevant environment variable ^(e.g. VS80COMNTOOLS for vc8^)
40)