mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Output directory for binaries of CSharp samples was corrected. Common run.bat was created for CSharp samples. Behaviour of run.bat file from mfc samples was extended. Recovered separate run_*.bat files for each sample in CSharp sample.
45 lines
1.4 KiB
Batchfile
45 lines
1.4 KiB
Batchfile
@echo off
|
|
REM Generation of vcproj files with qmake utilite
|
|
REM Variable QT_DIR and PATH to qmake executable must be defined without fail
|
|
|
|
REM Use first argument to specify version of Visual Studio (vc8, vc9, or vc10),
|
|
REM second argument specifies architecture) (win32 or win64)
|
|
REM third argument specifies Debug or Release mode
|
|
|
|
call "%~dp0env.bat" %1 %2 %3
|
|
|
|
set EXT=vcproj
|
|
|
|
if not "%VCVER%" == "" (
|
|
if /I "%VCVER%" == "vc8" (
|
|
set VCVER=vc8
|
|
set "VCVARS=%VS80COMNTOOLS%..\..\VC\vcvarsall.bat"
|
|
) else if /I "%VCVER%" == "vc9" (
|
|
set VCVER=vc9
|
|
set "VCVARS=%VS90COMNTOOLS%..\..\VC\vcvarsall.bat"
|
|
) else if /I "%VCVER%" == "vc10" (
|
|
set VCVER=vc10
|
|
set EXT=vcxproj
|
|
set "VCVARS=%VS100COMNTOOLS%..\..\VC\vcvarsall.bat"
|
|
) else if /I "%VCVER%" == "vc11" (
|
|
set VCVER=vc11
|
|
set EXT=vcxproj
|
|
set "VCVARS=%VS110COMNTOOLS%..\..\VC\vcvarsall.bat"
|
|
) else if /I "%VCVER%" == "vc12" (
|
|
set VCVER=vc12
|
|
set EXT=vcxproj
|
|
set "VCVARS=%VS120COMNTOOLS%..\..\VC\vcvarsall.bat"
|
|
) else (
|
|
echo Error: first argument ^(%VCVER%^) should specify supported version of Visual C++,
|
|
echo one of: vc8 ^(VS 2005 SP1^), vc9 ^(VS 2008 SP1^), vc10 ^(VS 2010^) or vc11 ^(VS 2012^)
|
|
exit
|
|
)
|
|
)
|
|
|
|
if ["%ARCH%"] == ["32"] set VCARCH=x86
|
|
if ["%ARCH%"] == ["64"] set VCARCH=amd64
|
|
|
|
call "%VCVARS%" %VCARCH%
|
|
|
|
qmake -tp vc -o Tutorial.%EXT% Tutorial.pro
|