mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-12 02:40:22 +08:00
- Moved tcl samples to resource folder. - Clean up cmake from samples related settings. - Removed CSharp samples from the repository. - Removed MFC samples from the repository. - Removed Qt samples from the repository. - Removed Inspector samples from the repository. - Removed glwin samples from the repository. - Removed webgl samples from the repository. - Removed xaml samples from the repository. - Removed Java samples from the repository.
40 lines
1.4 KiB
Batchfile
40 lines
1.4 KiB
Batchfile
echo off
|
|
|
|
if /I "%VCVER%" == "@COMPILER@" (
|
|
if "%ARCH%" == "@COMPILER_BITNESS@" (
|
|
rem set environment variables used by OCCT
|
|
set CSF_FPE=@BUILD_ENABLE_FPE_SIGNAL_HANDLER@
|
|
|
|
set "TCL_DIR=@3RDPARTY_TCL_DLL_DIR@"
|
|
set "TK_DIR=@3RDPARTY_TK_DLL_DIR@"
|
|
set "FREETYPE_DIR=@3RDPARTY_FREETYPE_DLL_DIR@"
|
|
set "FREEIMAGE_DIR=@3RDPARTY_FREEIMAGE_DLL_DIRS@"
|
|
set "EGL_DIR=@3RDPARTY_EGL_DLL_DIRS@"
|
|
set "GLES2_DIR=@3RDPARTY_GLES2_DLL_DIRS@"
|
|
set "TBB_DIR=@3RDPARTY_TBB_DLL_DIR@"
|
|
set "VTK_DIR=@3RDPARTY_VTK_DLL_DIR@"
|
|
set "FFMPEG_DIR=@3RDPARTY_FFMPEG_DLL_DIR@"
|
|
set "JEMALLOC_DIR=@3RDPARTY_JEMALLOC_LIBRARY_DIR@"
|
|
set "OPENVR_DIR=@3RDPARTY_OPENVR_DLL_DIRS@"
|
|
|
|
if not "@3RDPARTY_QT_DIR@" == "" (
|
|
set "QTDIR=@3RDPARTY_QT_DIR@"
|
|
)
|
|
set "TCL_VERSION_WITH_DOT=@3RDPARTY_TCL_LIBRARY_VERSION_WITH_DOT@"
|
|
set "TK_VERSION_WITH_DOT=@3RDPARTY_TK_LIBRARY_VERSION_WITH_DOT@"
|
|
|
|
rem CSF_OCCTBinPath and CSF_OCCTLibPath are defined differently for
|
|
rem multiple and single configuration builds
|
|
@OCCT_CUSTOM_BUILD_BIN_LIB_PATHS@
|
|
|
|
set "CSF_OCCTIncludePath=@CMAKE_BINARY_DIR@/@INSTALL_DIR_INCLUDE@"
|
|
set "CSF_OCCTResourcePath=@OCCT_ROOT_DIR@/resources"
|
|
set "CSF_OCCTDataPath=@OCCT_ROOT_DIR@/data"
|
|
set "CSF_OCCTTestsPath=@OCCT_ROOT_DIR@/tests"
|
|
set "CSF_OCCTDocPath=@OCCT_ROOT_DIR@/doc"
|
|
|
|
rem for compatibility with external application using CASROOT
|
|
set "CASROOT=@OCCT_ROOT_DIR@"
|
|
)
|
|
)
|