SDL: Merge commit '5ed091c12d4edefb366d78217b72cb75b563bfcd' into main

From 5ed091c12d4edefb366d78217b72cb75b563bfcd Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Fri, 21 Oct 2022 15:32:05 +0200
Subject: [PATCH] cmake: fix reporting of SDL_TESTS

---
 CMakeLists.txt | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 00b6a239f84b..27160ee62578 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3102,6 +3102,10 @@ if (SDL_ASAN)
   endif()
 endif()
 
+if(SDL_TESTS)
+  set(HAVE_TESTS ON)
+endif()
+
 # Create target that collects all all generated include files.
 add_custom_target(sdl_headers_copy
     DEPENDS ${SDL_GENERATED_HEADERS})
@@ -3483,6 +3487,7 @@ endif()
 ##### Tests subproject (must appear after the install/uninstall targets) #####
 
 if(SDL_TESTS)
+  set(HAVE_TESTS ON)
   enable_testing()
   add_subdirectory(test)
 endif()