mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
Arguments of genproj tool are revised: * -path option eliminated (current directory is always used); * IDE should be always indicated by first argument (instead of -target=<ide> option); * second argument can be used to specify non-default platform (wnt, mac, lin, ios, qnx); * option -h, -help, --help can be used to get help * option -static can be used to build static libs with XCode README.txt and docs on building are updated. codeblocks.bat is corrected to be able to detect 32-bit installation of Code::Blocks on 64-bit Windows. Remains of support of OpenCL (obsolete) are commented out in genconf.tcl genproj.tcl will not copy env.bat if it already exists.
21 lines
640 B
Batchfile
21 lines
640 B
Batchfile
@echo off
|
|
|
|
rem Setup environment
|
|
call "%~dp0env.bat" %1 %2 %3
|
|
|
|
rem Define path to project file
|
|
set "PRJFILE=%~dp0\adm\wnt\cbp\OCCT.workspace"
|
|
if not exist "%PRJFILE%" set "PRJFILE=%~dp0\adm\wnt\cbp\Products.workspace"
|
|
if not "%4" == "" (
|
|
set "PRJFILE=%4"
|
|
)
|
|
|
|
if "%CB_PATH%"=="" if exist "%PROGRAMFILES%\CodeBlocks" set "CB_PATH=%PROGRAMFILES%\CodeBlocks\codeblocks.exe"
|
|
if "%CB_PATH%"=="" if exist "%PROGRAMFILES(x86)%\CodeBlocks" set "CB_PATH=%PROGRAMFILES(x86)%\CodeBlocks\codeblocks.exe"
|
|
if "%CB_PATH%"=="" set "CB_PATH=codeblocks.exe"
|
|
|
|
set "CASBIN=wnt\cbp"
|
|
set "PATH=%~dp0%CASBIN%\bin%CASDEB%;%PATH%"
|
|
|
|
start "" "%CB_PATH%" "%PRJFILE%"
|