Changeset View
Changeset View
Standalone View
Standalone View
CMakeLists.txt
| Show First 20 Lines • Show All 411 Lines • ▼ Show 20 Lines | |||||
| # Debug | # Debug | ||||
| option(WITH_CXX_GUARDEDALLOC "Enable GuardedAlloc for C++ memory allocation tracking (only enable for development)" OFF) | option(WITH_CXX_GUARDEDALLOC "Enable GuardedAlloc for C++ memory allocation tracking (only enable for development)" OFF) | ||||
| mark_as_advanced(WITH_CXX_GUARDEDALLOC) | mark_as_advanced(WITH_CXX_GUARDEDALLOC) | ||||
| option(WITH_ASSERT_ABORT "Call abort() when raising an assertion through BLI_assert()" ON) | option(WITH_ASSERT_ABORT "Call abort() when raising an assertion through BLI_assert()" ON) | ||||
| mark_as_advanced(WITH_ASSERT_ABORT) | mark_as_advanced(WITH_ASSERT_ABORT) | ||||
| if(UNIX AND NOT APPLE) | if(UNIX AND NOT APPLE OR WIN32) | ||||
| option(WITH_CLANG_TIDY "Use Clang Tidy to analyze the source code (only enable for development on Linux using Clang)" OFF) | option(WITH_CLANG_TIDY "Use Clang Tidy to analyze the source code (only enable for development on Linux using Clang)" OFF) | ||||
| mark_as_advanced(WITH_CLANG_TIDY) | mark_as_advanced(WITH_CLANG_TIDY) | ||||
| endif() | endif() | ||||
| option(WITH_BOOST "Enable features depending on boost" ON) | option(WITH_BOOST "Enable features depending on boost" ON) | ||||
| option(WITH_TBB "Enable features depending on TBB (OpenVDB, OpenImageDenoise, sculpt multithreading)" ON) | option(WITH_TBB "Enable features depending on TBB (OpenVDB, OpenImageDenoise, sculpt multithreading)" ON) | ||||
| # TBB malloc is only supported on for windows currently | # TBB malloc is only supported on for windows currently | ||||
| ▲ Show 20 Lines • Show All 1,366 Lines • Show Last 20 Lines | |||||