0027127: Implementation of compilation of OCCT Products samples on all platforms...
[occt.git] / samples / CSharp / msvc_D3D.bat
1 @echo off
2
3 Setlocal EnableDelayedExpansion
4
5 rem Setup environment
6 call "%~dp0env.bat" %1 %2 %3
7
8 if NOT DEFINED DXSDK_DIR (
9   if /I "%VCVER%" == "vc9" (
10     echo ERROR: DirectX SDK is required in order to build the sample but it is not found in your system. Please install DirectX SDK and retry.
11     exit /B
12   )
13   if /I "%VCVER%" == "vc10" (
14     echo ERROR: DirectX SDK is required in order to build the sample but it is not found in your system. Please install DirectX SDK and retry.
15     exit /B
16   )
17 )
18
19 rem Define path to project file
20 set "PRJFILE=%~dp0\CSharp_D3D.sln"
21
22 set "VisualStudioExpressName=VCExpress"
23
24 if /I "%VCVER%" == "vc10" (
25   set "DevEnvDir=%VS100COMNTOOLS%..\IDE"
26 ) else if /I "%VCVER%" == "vc11" (
27   set "DevEnvDir=%VS110COMNTOOLS%..\IDE"
28   rem Visual Studio Express starting from VS 2012 is called "for Windows Desktop"
29   rem and has a new name for executable - WDExpress
30   set "VisualStudioExpressName=WDExpress"
31 ) else if /I "%VCVER%" == "vc12" (
32   set "DevEnvDir=%VS120COMNTOOLS%..\IDE"
33   set "VisualStudioExpressName=WDExpress"
34 ) else if /I "%VCVER%" == "vc14" (
35   set "DevEnvDir=%VS140COMNTOOLS%..\IDE"
36   set "VisualStudioExpressName=WDExpress"
37 ) else (
38   echo Error: wrong VS identifier
39   exit /B
40 )
41
42 rem Launch Visual Studio - either professional (devenv) or Express, as available
43 if exist "%DevEnvDir%\devenv.exe"  (
44   start "%DevEnvDir%\devenv.exe" "%PRJFILE%"
45 ) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe"  (
46   start "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
47 ) else (
48   echo Error: Could not find MS Visual Studio ^(%VCVER%^)
49   echo Check relevant environment variable ^(e.g. VS80COMNTOOLS for vc8^)
50 )