Changeset View
Changeset View
Standalone View
Standalone View
CMakeLists.txt
| Show First 20 Lines • Show All 394 Lines • ▼ Show 20 Lines | |||||
| option(WITH_SYSTEM_GLOG "Use system-wide Glog instead of a bundled one" OFF) | option(WITH_SYSTEM_GLOG "Use system-wide Glog instead of a bundled one" OFF) | ||||
| mark_as_advanced(WITH_SYSTEM_GFLAGS) | mark_as_advanced(WITH_SYSTEM_GFLAGS) | ||||
| mark_as_advanced(WITH_SYSTEM_GLOG) | mark_as_advanced(WITH_SYSTEM_GLOG) | ||||
| # Freestyle | # Freestyle | ||||
| option(WITH_FREESTYLE "Enable Freestyle (advanced edges rendering)" ON) | option(WITH_FREESTYLE "Enable Freestyle (advanced edges rendering)" ON) | ||||
| # Misc | # Misc | ||||
| if(WIN32 OR APPLE) | if(WIN32 OR APPLE OR (UNIX AND WITH_GHOST_WAYLAND)) | ||||
| option(WITH_INPUT_IME "Enable Input Method Editor (IME) for complex Asian character input" ON) | option(WITH_INPUT_IME "Enable Input Method Editor (IME) for complex Asian character input" ON) | ||||
| endif() | endif() | ||||
| option(WITH_INPUT_NDOF "Enable NDOF input devices (SpaceNavigator and friends)" ON) | option(WITH_INPUT_NDOF "Enable NDOF input devices (SpaceNavigator and friends)" ON) | ||||
| if(UNIX AND NOT APPLE) | if(UNIX AND NOT APPLE) | ||||
| option(WITH_INSTALL_PORTABLE "Install redistributable runtime, otherwise install into CMAKE_INSTALL_PREFIX" ON) | option(WITH_INSTALL_PORTABLE "Install redistributable runtime, otherwise install into CMAKE_INSTALL_PREFIX" ON) | ||||
| option(WITH_STATIC_LIBS "Try to link with static libraries, as much as possible, to make blender more portable across distributions" OFF) | option(WITH_STATIC_LIBS "Try to link with static libraries, as much as possible, to make blender more portable across distributions" OFF) | ||||
| if(WITH_STATIC_LIBS) | if(WITH_STATIC_LIBS) | ||||
| option(WITH_BOOST_ICU "Boost uses ICU library (required for linking with static Boost built with libicu)." OFF) | option(WITH_BOOST_ICU "Boost uses ICU library (required for linking with static Boost built with libicu)." OFF) | ||||
| ▲ Show 20 Lines • Show All 1,577 Lines • Show Last 20 Lines | |||||