0028345: Data Exchange - Reading STEP model using STEPCAF crashes
[occt.git] / genproj.bat
CommitLineData
910970ab 1@echo off
2
3rem Helper script to run generation of VS projects on Windows.
4rem Running it requires that Tcl should be in the PATH
d6cda17a 5rem Optional arguments: Format OS
6rem Format can be vc10, vc11, vc12, vc14, vc141, cbp, or xcd
7rem OS can be wnt, uwp, mac, or lin
910970ab 8
9SET "OLD_PATH=%PATH%"
10
72c37458 11rem run GUI configurator if custom.bat is missing
12if not exist "%~dp0custom.bat" (
13 call %~dp0genconf.bat
14)
15
16if not exist "%~dp0custom.bat" (
17 echo Error: custom.bat is not present.
18 echo Run the script again to generate custom.bat, or create it manually
19 goto :eof
20)
21
d1a67b9d 22if exist "%~dp0env.bat" (
944d808c 23 call "%~dp0env.bat" %1
d1a67b9d 24)
25
72c37458 26rem find Tcl
d1a67b9d 27set "TCL_EXEC=tclsh.exe"
d1a67b9d 28for %%X in (%TCL_EXEC%) do (set TCL_FOUND=%%~$PATH:X)
29
72c37458 30set "TCL_EXEC2=tclsh86.exe"
d1a67b9d 31if not defined TCL_FOUND (
72c37458 32 for %%X in (%TCL_EXEC2%) do (
33 set TCL_FOUND=%%~$PATH:X
34 set TCL_EXEC=%TCL_EXEC2%
35 )
d1a67b9d 36)
37
72c37458 38rem fail if Tcl is not found
39if not defined TCL_FOUND (
40 echo Error: "%TCL_EXEC%" is not found. Please update PATH variable ^(use custom.bat^)
910970ab 41 goto :eof
72c37458 42)
910970ab 43
d6cda17a 44set aPlatform=%2
45if "%aPlatform%" == "" (
46 set aPlatform=wnt
47 if "%VCPROP%" == "Universal" (
48 set aPlatform=uwp
49 )
50)
51
aafe169f 52set aPrjFmt=%PRJFMT%
53if "%aPrjFmt%" == "" ( set "aPrjFmt=vcxproj" )
54if "%aPrjFmt%" == "vcxproj" ( set "aPrjFmt=%VCFMT%" )
55
910970ab 56cd %~dp0
f4b0c772 57%TCL_EXEC% %~dp0adm/start.tcl genproj %aPrjFmt% %aPlatform% -solution "OCCT" %3 %4 %5
910970ab 58SET "PATH=%OLD_PATH%"