Changeset View
Changeset View
Standalone View
Standalone View
CMakeLists.txt
| Show First 20 Lines • Show All 343 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) | if(WIN32 OR APPLE) | ||||
| 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 redistributeable runtime, otherwise install into CMAKE_INSTALL_PREFIX" ON) | option(WITH_INSTALL_PORTABLE "Install redistributeable 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,549 Lines • ▼ Show 20 Lines | if(FIRST_RUN) | ||||
| info_cfg_option(WITH_CYCLES) | info_cfg_option(WITH_CYCLES) | ||||
| info_cfg_option(WITH_FFTW3) | info_cfg_option(WITH_FFTW3) | ||||
| info_cfg_option(WITH_FREESTYLE) | info_cfg_option(WITH_FREESTYLE) | ||||
| info_cfg_option(WITH_GMP) | info_cfg_option(WITH_GMP) | ||||
| info_cfg_option(WITH_HARU) | info_cfg_option(WITH_HARU) | ||||
| info_cfg_option(WITH_IK_ITASC) | info_cfg_option(WITH_IK_ITASC) | ||||
| info_cfg_option(WITH_IK_SOLVER) | info_cfg_option(WITH_IK_SOLVER) | ||||
| info_cfg_option(WITH_INPUT_NDOF) | info_cfg_option(WITH_INPUT_NDOF) | ||||
| info_cfg_option(WITH_INPUT_IME) | |||||
| info_cfg_option(WITH_INTERNATIONAL) | info_cfg_option(WITH_INTERNATIONAL) | ||||
| info_cfg_option(WITH_OPENCOLLADA) | info_cfg_option(WITH_OPENCOLLADA) | ||||
| info_cfg_option(WITH_OPENCOLORIO) | info_cfg_option(WITH_OPENCOLORIO) | ||||
| info_cfg_option(WITH_OPENIMAGEDENOISE) | info_cfg_option(WITH_OPENIMAGEDENOISE) | ||||
| info_cfg_option(WITH_OPENVDB) | info_cfg_option(WITH_OPENVDB) | ||||
| info_cfg_option(WITH_POTRACE) | info_cfg_option(WITH_POTRACE) | ||||
| info_cfg_option(WITH_PUGIXML) | info_cfg_option(WITH_PUGIXML) | ||||
| info_cfg_option(WITH_QUADRIFLOW) | info_cfg_option(WITH_QUADRIFLOW) | ||||
| ▲ Show 20 Lines • Show All 75 Lines • Show Last 20 Lines | |||||