From a6007b92a75d5d789212215e4bb730ec7b31407d Mon Sep 17 00:00:00 2001 From: M374LX Date: Thu, 29 Feb 2024 23:40:19 -0300 Subject: [PATCH] Fix oversight --- CMakeOptions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeOptions.txt b/CMakeOptions.txt index fbe29947f..2c58cd5cc 100644 --- a/CMakeOptions.txt +++ b/CMakeOptions.txt @@ -22,8 +22,8 @@ cmake_dependent_option(USE_AUDIO "Build raylib with audio module" ON CUSTOMIZE_B 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 "Test!" ON) -option(GLFW_BUILD_X11 "Test!" ON) +option(GLFW_BUILD_WAYLAND "Build the bundled GLFW with Wayland support" ON) +option(GLFW_BUILD_X11 "Build the bundled GLFW with X11 support" ON) option(INCLUDE_EVERYTHING "Include everything disabled by default (for CI usage" OFF) set(OFF ${INCLUDE_EVERYTHING} CACHE INTERNAL "Replace any OFF by default with \${OFF} to have it covered by this option")