0027176: Configuration, CMake - INSTALL_DIR is a common prefix for all other install...
[occt.git] / samples / mfc / standard / msvc.bat
1 @echo off
2
3 Setlocal EnableDelayedExpansion
4
5 rem Setup environment
6 call "%~dp0env.bat" %1 %2 %3
7
8 rem Define path to project file
9 set "PRJFILE=%~dp0All-%VCVER%.sln"
10
11 set "VisualStudioExpressName=VCExpress"
12
13 if /I "%VCVER%" == "vc8" (
14   set "DevEnvDir=%VS80COMNTOOLS%..\IDE"
15 ) else if /I "%VCVER%" == "vc9" (
16   set "DevEnvDir=%VS90COMNTOOLS%..\IDE"
17 ) else if /I "%VCVER%" == "vc10" (
18   set "DevEnvDir=%VS100COMNTOOLS%..\IDE"
19 ) else if /I "%VCVER%" == "vc11" (
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"
24 ) else if /I "%VCVER%" == "vc12" (
25   set "DevEnvDir=%VS120COMNTOOLS%..\IDE"
26   set "VisualStudioExpressName=WDExpress"
27 ) else (
28   echo Error: wrong VS identifier
29   exit /B
30 )
31
32 rem Launch Visual Studio - either professional (devenv) or Express, as available
33 if 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 )