From 00a7b14ee72670db9ef24228c4bc52f7c732a82d Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Tue, 28 May 2024 22:11:50 +0300 Subject: [PATCH] cmake: check mfapi.h before enabling SDL_CAMERA_DRIVER_MEDIAFOUNDATION --- CMakeLists.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3ae0c67e98..905ce36664 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1917,6 +1917,14 @@ elseif(WINDOWS) check_include_file(audioclient.h HAVE_AUDIOCLIENT_H) check_include_file(sensorsapi.h HAVE_SENSORSAPI_H) check_include_file(shellscalingapi.h HAVE_SHELLSCALINGAPI_H) + check_c_source_compiles(" + #include + #include + #include + #include + int main(int argc, char **argv) { return 0; } + " HAVE_MFAPI_H + ) if(SDL_AUDIO) if(HAVE_DSOUND_H AND NOT WINDOWS_STORE) @@ -2113,7 +2121,7 @@ elseif(WINDOWS) endif() if(SDL_CAMERA) - if(NOT WINDOWS_STORE) + if(HAVE_MFAPI_H AND NOT WINDOWS_STORE) set(HAVE_CAMERA TRUE) set(SDL_CAMERA_DRIVER_MEDIAFOUNDATION 1) sdl_glob_sources("${SDL3_SOURCE_DIR}/src/camera/mediafoundation/*.c")