mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
genproj procedure has been extended with new parameters -solution, set to OCCT by default. Added missing HAVE_RAPIDJSON to env.sh. Added implicit file path normalization for PRODUCTS_PATH variable, to avoid genconf.tcl script malfunction on backslashed.
13 lines
401 B
Bash
Executable File
13 lines
401 B
Bash
Executable File
#!/bin/bash
|
|
# This file has been generated by genproj.tcl script from CASROOT/adm/templates/codeblocks.sh
|
|
|
|
export TARGET="cbp"
|
|
|
|
source ./env.sh "$1" "$TARGET"
|
|
|
|
if [ -e "/Applications/CodeBlocks.app/Contents/MacOS/CodeBlocks" ]; then
|
|
/Applications/CodeBlocks.app/Contents/MacOS/CodeBlocks ./adm/$WOKSTATION/cbp/__SOLUTION__.workspace
|
|
else
|
|
codeblocks ./adm/$WOKSTATION/cbp/__SOLUTION__.workspace
|
|
fi
|