mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
15 lines
520 B
CMake
15 lines
520 B
CMake
project(TKernel)
|
|
|
|
OCCT_INCLUDE_CMAKE_FILE (adm/cmake/occt_toolkit)
|
|
|
|
# Set desired Memory Manager
|
|
if ("${USE_MMGR_TYPE}" STREQUAL "FLEXIBLE")
|
|
target_compile_definitions("TKernel" PRIVATE "OCCT_MMGT_OPT_FLEXIBLE")
|
|
elseif ("${USE_MMGR_TYPE}" STREQUAL "TBB")
|
|
target_compile_definitions("TKernel" PRIVATE "OCCT_MMGT_OPT_TBB")
|
|
elseif ("${USE_MMGR_TYPE}" STREQUAL "JEMALLOC")
|
|
target_compile_definitions("TKernel" PRIVATE "OCCT_MMGT_OPT_JEMALLOC")
|
|
else ()
|
|
message (STATUS "Info: Used native memory manager")
|
|
endif()
|