mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0028920: Samples - fix msvc.bat for building samples without CMake
Added DevEnvDir to env.bat. Added window title to "start" command in msvc.bat files.
This commit is contained in:
parent
751b10f25b
commit
48691eaa2c
@ -52,6 +52,56 @@ if /I ["%3"] == ["relwithdeb"] set "CASDEB=i"
|
|||||||
rem Decode VCVER
|
rem Decode VCVER
|
||||||
call "%~dp0adm\vcver.bat"
|
call "%~dp0adm\vcver.bat"
|
||||||
|
|
||||||
|
rem ----- Parsing of Visual Studio platform -----
|
||||||
|
set "VisualStudioExpressName=VCExpress"
|
||||||
|
|
||||||
|
if not "%DevEnvDir%" == "" (
|
||||||
|
rem If DevEnvDir is already defined (e.g. in custom.bat), use that value
|
||||||
|
) 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 ----- Parsing vcvarsall for qt samples and define PlatformToolset -----
|
||||||
|
if /I "%VCFMT%" == "vc10" (
|
||||||
|
set "VCVARS=%VS100COMNTOOLS%..\..\VC\vcvarsall.bat"
|
||||||
|
set "VCPlatformToolSet=v100"
|
||||||
|
) else if /I "%VCFMT%" == "vc11" (
|
||||||
|
set "VCVARS=%VS110COMNTOOLS%..\..\VC\vcvarsall.bat"
|
||||||
|
set "VCPlatformToolSet=v110"
|
||||||
|
) else if /I "%VCFMT%" == "vc12" (
|
||||||
|
set "VCVARS=%VS120COMNTOOLS%..\..\VC\vcvarsall.bat"
|
||||||
|
set "VCPlatformToolSet=v120"
|
||||||
|
) else if /I "%VCFMT%" == "vc14" (
|
||||||
|
set "VCVARS=%VS140COMNTOOLS%..\..\VC\vcvarsall.bat"
|
||||||
|
set "VCPlatformToolSet=v140"
|
||||||
|
) 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 "VCVARS=%%i\VC\Auxiliary\Build\vcvarsall.bat"
|
||||||
|
)
|
||||||
|
set "VCPlatformToolSet=v141"
|
||||||
|
) else (
|
||||||
|
echo Error: first argument ^(%VCVER%^) should specify supported version of Visual C++,
|
||||||
|
echo one of: vc10 ^(VS 2010 SP3^), vc11 ^(VS 2012 SP3^), vc12 ^(VS 2013^) or vc14 ^(VS 2015^)
|
||||||
|
exit
|
||||||
|
)
|
||||||
|
|
||||||
set "CSF_OPT_LIB32D=%CSF_OPT_LIB32%"
|
set "CSF_OPT_LIB32D=%CSF_OPT_LIB32%"
|
||||||
set "CSF_OPT_LIB64D=%CSF_OPT_LIB64%"
|
set "CSF_OPT_LIB64D=%CSF_OPT_LIB64%"
|
||||||
set "CSF_OPT_BIN32D=%CSF_OPT_BIN32%"
|
set "CSF_OPT_BIN32D=%CSF_OPT_BIN32%"
|
||||||
|
@ -10,35 +10,6 @@ if not "%4" == "" (
|
|||||||
set "PRJFILE=%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
|
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
||||||
if exist "%DevEnvDir%\devenv.exe" (
|
if exist "%DevEnvDir%\devenv.exe" (
|
||||||
start "" "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
start "" "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
||||||
|
@ -10,9 +10,9 @@ set "PRJFILE=%~dp0\CSharp.sln"
|
|||||||
|
|
||||||
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
||||||
if exist "%DevEnvDir%\devenv.exe" (
|
if exist "%DevEnvDir%\devenv.exe" (
|
||||||
start "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
start "" "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
||||||
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
||||||
start "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
start "" "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
||||||
) else (
|
) else (
|
||||||
echo Error: Could not find MS Visual Studio ^(%VCVER%^)
|
echo Error: Could not find MS Visual Studio ^(%VCVER%^)
|
||||||
echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
|
echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
|
||||||
|
@ -21,9 +21,9 @@ set "PRJFILE=%~dp0\CSharp_D3D.sln"
|
|||||||
|
|
||||||
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
||||||
if exist "%DevEnvDir%\devenv.exe" (
|
if exist "%DevEnvDir%\devenv.exe" (
|
||||||
start "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
start "" "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
||||||
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
||||||
start "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
start "" "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
||||||
) else (
|
) else (
|
||||||
echo Error: Could not find MS Visual Studio ^(%VCVER%^)
|
echo Error: Could not find MS Visual Studio ^(%VCVER%^)
|
||||||
echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
|
echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
|
||||||
|
@ -10,9 +10,9 @@ set "PRJFILE=%~dp0All-%VCFMT%.sln"
|
|||||||
|
|
||||||
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
||||||
if exist "%DevEnvDir%\devenv.exe" (
|
if exist "%DevEnvDir%\devenv.exe" (
|
||||||
start "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
start "" "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
||||||
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
||||||
start "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
start "" "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
||||||
) else (
|
) else (
|
||||||
echo Error: Could not find MS Visual Studio ^(%VCFMT%^)
|
echo Error: Could not find MS Visual Studio ^(%VCFMT%^)
|
||||||
echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
|
echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
|
||||||
|
@ -10,9 +10,9 @@ set "PRJFILE=%~dp0FuncDemo.sln"
|
|||||||
|
|
||||||
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
||||||
if exist "%DevEnvDir%\devenv.exe" (
|
if exist "%DevEnvDir%\devenv.exe" (
|
||||||
start "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
start "" "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
||||||
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
||||||
start "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
start "" "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
||||||
) else (
|
) else (
|
||||||
echo Error: Could not find MS Visual Studio ^(%VCVER%^)
|
echo Error: Could not find MS Visual Studio ^(%VCVER%^)
|
||||||
echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
|
echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
|
||||||
|
@ -10,9 +10,9 @@ set "PRJFILE=%~dp0IESample.sln"
|
|||||||
|
|
||||||
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
||||||
if exist "%DevEnvDir%\devenv.exe" (
|
if exist "%DevEnvDir%\devenv.exe" (
|
||||||
start "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
start "" "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
||||||
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
||||||
start "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
start "" "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
||||||
) else (
|
) else (
|
||||||
echo Error: Could not find MS Visual Studio ^(%VCVER%^)
|
echo Error: Could not find MS Visual Studio ^(%VCVER%^)
|
||||||
echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
|
echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
|
||||||
|
@ -10,9 +10,9 @@ set "PRJFILE=%~dp0Tutorial.sln"
|
|||||||
|
|
||||||
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
rem Launch Visual Studio - either professional (devenv) or Express, as available
|
||||||
if exist "%DevEnvDir%\devenv.exe" (
|
if exist "%DevEnvDir%\devenv.exe" (
|
||||||
start "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
start "" "%DevEnvDir%\devenv.exe" "%PRJFILE%"
|
||||||
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
) else if exist "%DevEnvDir%\%VisualStudioExpressName%.exe" (
|
||||||
start "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
start "" "%DevEnvDir%\%VisualStudioExpressName%.exe" "%PRJFILE%"
|
||||||
) else (
|
) else (
|
||||||
echo Error: Could not find MS Visual Studio ^(%VCVER%^)
|
echo Error: Could not find MS Visual Studio ^(%VCVER%^)
|
||||||
echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
|
echo Check relevant environment variable ^(e.g. VS100COMNTOOLS for vc10^)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user