From de4ea78e8f83aeac1506b37cc4c0b5e50c6b06bd Mon Sep 17 00:00:00 2001 From: superp00t Date: Sat, 7 Sep 2024 22:34:12 -0400 Subject: [PATCH] fix(build): correctly configure GLSDL on windows --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3ec6b00..bd8d940 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ endif () unset(WHOA_UB_SAN_HELP_TEXT) # GLSDL -if (WHOA_SYSTEM_WINDOWS) +if (WHOA_SYSTEM_WIN) # GLSDL can be disabled on Windows to save time option(WHOA_BUILD_GLSDL "Disable/Enable compilation of the OpenGL/SDL2 graphics rendering device on Windows." 0) elseif (WHOA_SYSTEM_MAC)