early-access version 2853
This commit is contained in:
34
externals/vcpkg/ports/sdl2/0003-sdl2-disable-sdlmain-target-search-on-uwp.patch
vendored
Executable file
34
externals/vcpkg/ports/sdl2/0003-sdl2-disable-sdlmain-target-search-on-uwp.patch
vendored
Executable file
@@ -0,0 +1,34 @@
|
||||
--- a/SDL2Config.cmake
|
||||
+++ b/SDL2Config.cmake
|
||||
@@ -46,6 +46,7 @@ foreach(prop ${relprops})
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
+if(NOT WINDOWS_STORE)
|
||||
foreach(prop ${relprops})
|
||||
get_target_property(sdl2mainimplib SDL2::SDL2main ${prop})
|
||||
if(sdl2mainimplib)
|
||||
@@ -53,6 +54,7 @@ foreach(prop ${relprops})
|
||||
break()
|
||||
endif()
|
||||
endforeach()
|
||||
+endif()
|
||||
|
||||
foreach(prop ${dbgprops})
|
||||
get_target_property(sdl2implibdbg SDL2::SDL2 ${prop})
|
||||
@@ -62,6 +64,7 @@ foreach(prop ${dbgprops})
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
+if(NOT WINDOWS_STORE)
|
||||
foreach(prop ${dbgprops})
|
||||
get_target_property(sdl2mainimplibdbg SDL2::SDL2main ${prop})
|
||||
if(sdl2mainimplibdbg)
|
||||
@@ -69,6 +72,7 @@ foreach(prop ${dbgprops})
|
||||
break()
|
||||
endif()
|
||||
endforeach()
|
||||
+endif()
|
||||
|
||||
if( sdl2implib AND sdl2mainimplib AND sdl2implibdbg AND sdl2mainimplibdbg )
|
||||
# we have both release and debug builds of SDL2 and SDL2main, so use this ugly
|
||||
Reference in New Issue
Block a user