mirror of
https://github.com/raysan5/raylib.git
synced 2026-05-08 14:52:05 +00:00
Parse SUPPORT_ defines from src/config.h by their actual 0/1 values so CUSTOMIZE_BUILD exposes the correct defaults. Apply INCLUDE_EVERYTHING explicitly when registering dependent options.
44 lines
2.0 KiB
Plaintext
44 lines
2.0 KiB
Plaintext
# ## Config options ###
|
|
include(CMakeDependentOption)
|
|
include(EnumOption)
|
|
|
|
if(EMSCRIPTEN)
|
|
# When configuring web builds with "emcmake cmake -B build -S .", set PLATFORM to Web by default
|
|
SET(PLATFORM Web CACHE STRING "Platform to build for.")
|
|
endif()
|
|
enum_option(PLATFORM "Desktop;Web;WebRGFW;Android;Raspberry Pi;DRM;SDL;RGFW;Memory" "Platform to build for.")
|
|
|
|
enum_option(OPENGL_VERSION "OFF;4.3;3.3;2.1;1.1;ES 2.0;ES 3.0;Software" "Force a specific OpenGL Version?")
|
|
|
|
# Configuration options
|
|
option(BUILD_EXAMPLES "Build the examples." ${PROJECT_IS_TOP_LEVEL})
|
|
option(CUSTOMIZE_BUILD "Show options for customizing your Raylib library build." OFF)
|
|
option(ENABLE_ASAN "Enable AddressSanitizer (ASAN) for debugging (degrades performance)" OFF)
|
|
option(ENABLE_UBSAN "Enable UndefinedBehaviorSanitizer (UBSan) for debugging" OFF)
|
|
option(ENABLE_MSAN "Enable MemorySanitizer (MSan) for debugging (not recommended to run with ASAN)" OFF)
|
|
|
|
# Shared library is always PIC. Static library should be PIC too if linked into a shared library
|
|
option(WITH_PIC "Compile static library as position-independent code" OFF)
|
|
option(BUILD_SHARED_LIBS "Build raylib as a shared library" OFF)
|
|
cmake_dependent_option(USE_AUDIO "Build raylib with audio module" ON CUSTOMIZE_BUILD ON)
|
|
|
|
enum_option(USE_EXTERNAL_GLFW "OFF;IF_POSSIBLE;ON" "Link raylib against system GLFW instead of embedded one")
|
|
|
|
# GLFW build options
|
|
option(GLFW_BUILD_WAYLAND "Build the bundled GLFW with Wayland support" OFF)
|
|
option(GLFW_BUILD_X11 "Build the bundled GLFW with X11 support" ON)
|
|
|
|
option(INCLUDE_EVERYTHING "Include everything disabled by default (for CI usage)" OFF)
|
|
|
|
include(ParseConfigHeader)
|
|
|
|
foreach(FLAG IN LISTS CONFIG_HEADER_FLAGS)
|
|
string(REGEX MATCH "([^=]+)=(.+)" _ ${FLAG})
|
|
set(CONFIG_HEADER_FLAG_DEFAULT ${CMAKE_MATCH_2})
|
|
if (INCLUDE_EVERYTHING AND "${CONFIG_HEADER_FLAG_DEFAULT}" STREQUAL "OFF")
|
|
set(CONFIG_HEADER_FLAG_DEFAULT ON)
|
|
endif()
|
|
|
|
cmake_dependent_option(${CMAKE_MATCH_1} "" ${CONFIG_HEADER_FLAG_DEFAULT} CUSTOMIZE_BUILD ${CONFIG_HEADER_FLAG_DEFAULT})
|
|
endforeach()
|