Browse Source

cmake: SDL2 target is not always available

Anonymous Maarten 8 tháng trước cách đây
mục cha
commit
7cf3234efe
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      CMakeLists.txt

+ 4 - 1
CMakeLists.txt

@@ -3548,7 +3548,10 @@ if(SDL_TEST)
 endif()
 
 if(MSVC AND NOT SDL_LIBC)
-  set(targets SDL2)
+  set(targets )
+  if(TARGET SDL2)
+    list(APPEND targets SDL2)
+  endif()
   if(TARGET SDL2-static)
     list(APPEND targets SDL2-static)
   endif()