mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
It is possible now to use standalone TCL and TK. Behavior of 3RDPARTY_TK_DIR specifying extended TCL/TK searching works correctly with installed ActiveTcl TCL/TK searching works correctly with latest versions of CMake Macro COMPLIANCE_PRODUCT_CONSISTENCY was created. Small update of compilation for android
15 lines
470 B
Bash
15 lines
470 B
Bash
#!/bin/bash
|
|
|
|
if [ "$COMPILER" == "@COMPILER@" ]; then
|
|
if [ "$ARCH" == "@COMPILER_BITNESS@" ]; then
|
|
export TCL_DIR="@3RDPARTY_TCL_LIBRARY_DIR@"
|
|
export TK_DIR="@3RDPARTY_TK_LIBRARY_DIR@"
|
|
export FREETYPE_DIR="@3RDPARTY_FREETYPE_LIBRARY_DIR@"
|
|
export FREEIMAGE_DIR="@3RDPARTY_FREEIMAGE_LIBRARY_DIR@"
|
|
export GL2PS_DIR="@3RDPARTY_GL2PS_LIBRARY_DIR@"
|
|
export TBB_DIR="@3RDPARTY_TBB_LIBRARY_DIR@"
|
|
export VTK_DIR="@3RDPARTY_VTK_LIBRARY_DIR@"
|
|
fi
|
|
fi
|
|
|