mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
the choice of OCCT build type moved to generated projects debug library search removed from 3rdparty search mechanism draw.bat receive 3 arguments: compiler, bitness and build type
15 lines
455 B
Bash
15 lines
455 B
Bash
#!/bin/bash
|
|
|
|
if [ "$COMPILER" == "@COMPILER@" ]; then
|
|
if [ "$ARCH" == "@COMPILER_BITNESS@" ]; then
|
|
export TCL_DIR="@USED_3RDPARTY_TCL_DIR@"
|
|
export FREETYPE_DIR="@USED_3RDPARTY_FREETYPE_DIR@"
|
|
export FREEIMAGE_DIR="@USED_3RDPARTY_FREEIMAGE_DIR@"
|
|
export GL2PS_DIR="@USED_3RDPARTY_GL2PS_DIR@"
|
|
export TBB_DIR="@USED_3RDPARTY_TBB_DIR@"
|
|
export VTK_DIR="@USED_3RDPARTY_VTK_DIR@"
|
|
export CSF_TestDataPath="@TESTS_SHAPES_DIR@"
|
|
fi
|
|
fi
|
|
|