mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Restore XCode generator. Add missing dependencies to EXTERNLIB. genproj.tcl - remove OS:mkdir() - duplicate of wokUtils:FILES:mkdir(). genproj.tcl - use osutils:usedOsLibs() for Code::Blocks. src/OS - remove unused :LinksoWith() and :CompileWith(). adm/CMPLRS - remove unused CSF_ entities. Remove config.h related code. Add executable flag to codeblocks.sh and draw.sh scripts. Setup ARCH variable using $tcl_platform(pointerSize). wokdep:SearchLib() - use $tcl_platform(os) instead of $tcl_platform(platform) for checking Linux-specific library paths. wokdep:SearchFreeType() - fix misprint in ft2build.h header file name. wokdep:SaveCustom() - export SHORTCUT_HEADERS to "custom.sh" as well, not only to "custom.bat".
41 lines
1.1 KiB
Bash
Executable File
41 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Helper script to run generation of CBP/XCode projects on Linux / OS X.
|
|
# Running it requires that Tcl should be in the PATH
|
|
|
|
anOldPath="$PATH"
|
|
anOldLd="$LD_LIBRARY_PATH"
|
|
anOldDyLd="$DYLD_LIBRARY_PATH"
|
|
|
|
# go to the script directory
|
|
aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD";
|
|
|
|
aSystem=`uname -s`
|
|
aTarget="$1"
|
|
anOpt2=$2
|
|
anOpt3=$3
|
|
anOpt4=$4
|
|
anOpt5=$5
|
|
if [ "$aTarget" == "" ]; then
|
|
aTarget="cbp"
|
|
if [ "$aSystem" == "Darwin" ]; then aTarget="xcd"; fi;
|
|
fi
|
|
|
|
if [ ! -e "${aScriptPath}/custom.sh" ]; then
|
|
tclsh "${aScriptPath}/adm/genconf.tcl"
|
|
fi
|
|
|
|
if [ ! -e "${aScriptPath}/custom.sh" ]; then
|
|
echo custom.sh is not created. Run the script again and generate custom.sh
|
|
exit 1
|
|
fi
|
|
source "${aScriptPath}/custom.sh"
|
|
|
|
if [ -e "${aScriptPath}/env.sh" ]; then source "${aScriptPath}/env.sh"; fi
|
|
|
|
tclsh "${aScriptPath}/adm/genproj.tcl" -path="${aScriptPath}" -target=${aTarget} $anOpt2 $anOpt3 $anOpt4 $anOpt5
|
|
|
|
export PATH="$anOldPath"
|
|
export LD_LIBRARY_PATH="$anOldLd"
|
|
export DYLD_LIBRARY_PATH="$anOldDyLd"
|