1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-02 17:46:22 +03:00
occt/samples/qt/OCCTOverview/genproj.bat
asuraven a2176e6524 0031570: Samples - add Qt samples similar to standard MFC samples
Added Qt sample OCCTOverview providing examples of use of OCCT API with relevant code and demonstration of results in the viewer.

Off-topic: some unused images are removed from dox/introduction/images/
2020-10-06 20:40:23 +03:00

18 lines
583 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
if ["%VCARCH%"] == [""] set "VCARCH=%ARCH%"
if ["%VCARCH%"] == ["64"] set "VCARCH=amd64"
if ["%VCARCH%"] == ["32"] set "VCARCH=x86"
call "%VCVARS%" %VCARCH%
qmake -tp vc -r -o OCCTOverview.sln OCCTOverview0.pro