1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/genproj.bat
ski 910970abb8 0024786: Move functionality of WOK command wgenproj to OCCT tool genproj
WOK scripts used in generation of MSVC projects are put to adm/genproj.tcl
Batch script genproj.bat added, replacing 'wgenproj' command of WOK.

WOK tool for configuring custom.bat is also copied; it is called by genproj if custom.bat does not exist

Environment variable SHORTCUT_HEADERS can be defined in custom.bat to have headers put in inc just shortcuts to actual headers, instead of copies.
Corresponding option "copy OCCT short-cut headers instead of original one to inc folder" is added to genconf dialog
2015-07-16 17:22:33 +03:00

26 lines
515 B
Batchfile

@echo off
rem Helper script to run generation of VS projects on Windows.
rem Running it requires that Tcl should be in the PATH
SET "OLD_PATH=%PATH%"
if not exist "%~dp0custom.bat" (
tclsh.exe ./adm/genconf.tcl
)
if not exist "%~dp0custom.bat" (
echo custom.bat is not created. Run the script again and generate custom.bat
goto :eof
) else (
call "%~dp0custom.bat"
)
if exist "%~dp0env.bat" (
call "%~dp0env.bat"
)
cd %~dp0
tclsh.exe ./adm/genproj.tcl -path=. -target=%VCVER%
SET "PATH=%OLD_PATH%"