16 lines
592 B
CMake
16 lines
592 B
CMake
|
# 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)
|
||
|
|
||
|
if(LINUX OR BSD)
|
||
|
option(ENABLE_X11 "Support X11 window system" ON)
|
||
|
option(ENABLE_WAYLAND "Support Wayland window system" ON)
|
||
|
endif()
|
||
|
if(APPLE)
|
||
|
option(SKIP_POSTPROCESS_BUNDLE "Disable bundle post-processing, including Qt additions" OFF)
|
||
|
endif()
|