1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/samples/qt/Common/Run_MSVC.bat
2012-03-06 10:17:06 +04:00

20 lines
313 B
Batchfile
Executable File

@ECHO OFF
call env.bat
IF NOT DEFINED QTDIR GOTO ERR_QTDIR
REM *** To start build on MSVC6 ***
REM msdev.exe Common.dsw
REM *** To start build on MSVC7 ***
start "%VS71COMNTOOLS%\..\IDE\devenv.exe" Common.sln
GOTO END
:ERR_QTDIR
ECHO Environment variable "QTDIR" has not been defined. Abort.
GOTO END
:END