summaryrefslogtreecommitdiffhomepage
path: root/CMakeOptions.txt
diff options
context:
space:
mode:
authorubkp <[email protected]>2023-08-03 05:29:45 -0300
committerGitHub <[email protected]>2023-08-03 10:29:45 +0200
commit5b4aaf4eb1b848d023b3bac0ce7a8e34faab9ba1 (patch)
tree643e5d727a0dbdd93da2b5ff62c23b21db163fde /CMakeOptions.txt
parent464e714a2e256e7501239e0a5a12a2e9ee4e7f04 (diff)
downloadraylib-5b4aaf4eb1b848d023b3bac0ce7a8e34faab9ba1.tar.gz
raylib-5b4aaf4eb1b848d023b3bac0ce7a8e34faab9ba1.zip
Adds CMake option for SUPPORT_CUSTOM_FRAME_CONTROL (#3221)
Diffstat (limited to 'CMakeOptions.txt')
-rw-r--r--CMakeOptions.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeOptions.txt b/CMakeOptions.txt
index c643427c..cc57a851 100644
--- a/CMakeOptions.txt
+++ b/CMakeOptions.txt
@@ -46,6 +46,7 @@ cmake_dependent_option(SUPPORT_BUSY_WAIT_LOOP "Use busy wait loop for timing syn
cmake_dependent_option(SUPPORT_EVENTS_WAITING "Wait for events passively (sleeping while no events) instead of polling them actively every frame" OFF CUSTOMIZE_BUILD OFF)
cmake_dependent_option(SUPPORT_WINMM_HIGHRES_TIMER "Setting a higher resolution can improve the accuracy of time-out intervals in wait functions" OFF CUSTOMIZE_BUILD OFF)
cmake_dependent_option(SUPPORT_COMPRESSION_API "Support for compression API" ON CUSTOMIZE_BUILD ON)
+cmake_dependent_option(SUPPORT_CUSTOM_FRAME_CONTROL "Enabling this flag allows manual control of the frame processes, use at your own risk" OFF CUSTOMIZE_BUILD OFF)
# rshapes.c
cmake_dependent_option(SUPPORT_QUADS_DRAW_MODE "Use QUADS instead of TRIANGLES for drawing when possible. Some lines-based shapes could still use lines" ON CUSTOMIZE_BUILD ON)