mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Modify mfc and qt samples for supporting VS 2017. Create general vcxproj files for all mfc samples. Correction msvc.bat and msvc_D3D.bat in CSharp sample
14 lines
440 B
Batchfile
14 lines
440 B
Batchfile
@echo off
|
|
REM Generation of vcproj files with qmake utilite
|
|
REM Variable QTDIR and PATH to qmake executable must be defined without fail
|
|
|
|
REM Use first argument to specify version of Visual Studio (vc10, vc11, vc12 or vc14),
|
|
REM second argument specifies architecture) (win32 or win64)
|
|
REM third argument specifies Debug or Release mode
|
|
|
|
call "%~dp0env.bat" %1 %2 %3
|
|
|
|
call "%VCVARS%" %VCARCH%
|
|
|
|
qmake -tp vc -r -o FuncDemo.sln FuncDemo0.pro
|