2024-04-20 10:26:53 +00:00
|
|
|
# Renderer options.
|
|
|
|
option(ENABLE_OPENGL "Build with OpenGL renderer" ON)
|
|
|
|
option(ENABLE_VULKAN "Build with Vulkan renderer" ON)
|
|
|
|
option(BUILD_NOGUI_FRONTEND "Build the NoGUI frontend" OFF)
|
|
|
|
option(BUILD_QT_FRONTEND "Build the Qt frontend" ON)
|
|
|
|
option(BUILD_REGTEST "Build regression test runner" OFF)
|
|
|
|
option(BUILD_TESTS "Build unit tests" OFF)
|
2024-09-23 09:20:14 +00:00
|
|
|
option(DISABLE_SSE4 "Build with SSE4 instructions disabled, reduces performance" OFF)
|
2024-04-20 10:26:53 +00:00
|
|
|
|
|
|
|
if(LINUX OR BSD)
|
|
|
|
option(ENABLE_X11 "Support X11 window system" ON)
|
|
|
|
option(ENABLE_WAYLAND "Support Wayland window system" ON)
|
2024-08-12 08:49:28 +00:00
|
|
|
option(ALLOW_INSTALL "Allow installation to CMAKE_INSTALL_PREFIX" OFF)
|
2024-09-23 07:22:33 +00:00
|
|
|
option(INSTALL_SELF_CONTAINED "Make self-contained install, i.e. everything in one directory" ON)
|
2024-04-20 10:26:53 +00:00
|
|
|
endif()
|
|
|
|
if(APPLE)
|
|
|
|
option(SKIP_POSTPROCESS_BUNDLE "Disable bundle post-processing, including Qt additions" OFF)
|
|
|
|
endif()
|