summaryrefslogtreecommitdiffhomepage
path: root/CMakeOptions.txt
diff options
context:
space:
mode:
authorRay <[email protected]>2023-10-29 21:11:30 +0100
committerRay <[email protected]>2023-10-29 21:11:30 +0100
commitfc7dcff4a72e3ce9ea970ad4e03cfabed026fbad (patch)
treed061a3c13e1296478e13095d04c2927ea1e185e6 /CMakeOptions.txt
parent09075d515af4fcf3caca8c494e7bcf71d64060da (diff)
downloadraylib-fc7dcff4a72e3ce9ea970ad4e03cfabed026fbad.tar.gz
raylib-fc7dcff4a72e3ce9ea970ad4e03cfabed026fbad.zip
ADDED: Pseudo-random numbers generator!
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 79953095..823128b0 100644
--- a/CMakeOptions.txt
+++ b/CMakeOptions.txt
@@ -37,6 +37,7 @@ cmake_dependent_option(SUPPORT_MODULE_RAUDIO "Include module: raudio" ON CUSTOMI
# rcore.c
cmake_dependent_option(SUPPORT_CAMERA_SYSTEM "Provide camera module (rcamera.h) with multiple predefined cameras: free, 1st/3rd person, orbital" ON CUSTOMIZE_BUILD ON)
cmake_dependent_option(SUPPORT_GESTURES_SYSTEM "Gestures module is included (rgestures.h) to support gestures detection: tap, hold, swipe, drag" ON CUSTOMIZE_BUILD ON)
+cmake_dependent_option(SUPPORT_RPRAND_GENERATOR "Include pseudo-random numbers generator (rprand.h), based on Xoshiro128** and SplitMix64" ON CUSTOMIZE_BUILD ON)
cmake_dependent_option(SUPPORT_MOUSE_GESTURES "Mouse gestures are directly mapped like touches and processed by gestures system" ON CUSTOMIZE_BUILD ON)
cmake_dependent_option(SUPPORT_SSH_KEYBOARD_RPI "Reconfigure standard input to receive key inputs, works with SSH connection" ON CUSTOMIZE_BUILD ON)
cmake_dependent_option(SUPPORT_DEFAULT_FONT "Default font is loaded on window initialization to be available for the user to render simple text. If enabled, uses external module functions to load default raylib font (module: text)" ON CUSTOMIZE_BUILD ON)