diff options
| author | Ray <[email protected]> | 2021-04-14 21:14:55 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-14 21:14:55 +0200 |
| commit | ac95a2e27c8facd1ead7a3d6160439b58f916e02 (patch) | |
| tree | b8800128bc936a3c1193f08fdf5ca1fae9e8ab7b | |
| parent | 45823a36eb641bf7fa4dc70e6509edaffc73e1ab (diff) | |
| download | raylib-ac95a2e27c8facd1ead7a3d6160439b58f916e02.tar.gz raylib-ac95a2e27c8facd1ead7a3d6160439b58f916e02.zip | |
Update CMakeOptions.txt
| -rw-r--r-- | CMakeOptions.txt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/CMakeOptions.txt b/CMakeOptions.txt index ebdba0c9..c024965e 100644 --- a/CMakeOptions.txt +++ b/CMakeOptions.txt @@ -37,15 +37,11 @@ cmake_dependent_option(SUPPORT_SCREEN_CAPTURE "Allow automatic screen capture of cmake_dependent_option(SUPPORT_GIF_RECORDING "Allow automatic gif recording of current screen pressing CTRL+F12, defined in KeyCallback()" ON CUSTOMIZE_BUILD ON) cmake_dependent_option(SUPPORT_BUSY_WAIT_LOOP "Use busy wait loop for timing sync instead of a high-resolution timer" OFF CUSTOMIZE_BUILD OFF) 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_HIGH_DPI "Support high DPI displays" 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_DATA_STORAGE "Support for persistent data storage" ON CUSTOMIZE_BUILD ON) cmake_dependent_option(SUPPORT_COMPRESSION_API "Support for compression API" ON CUSTOMIZE_BUILD ON) -# rlgl.h -cmake_dependent_option(SUPPORT_VR_SIMULATOR "Support VR simulation functionality (stereo rendering)" ON CUSTOMIZE_BUILD ON) - # shapes.c -cmake_dependent_option(SUPPORT_FONT_TEXTURE "Draw rectangle shapes using font texture white character instead of default white texture. Allows drawing rectangles and text with a single draw call, very useful for GUI systems!" ON CUSTOMIZE_BUILD ON) 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) # textures.c |
