bugfix for "add 'Misc' subsystem"

This commit is contained in:
pionere 2022-01-09 17:00:41 +01:00 committed by Ryan C. Gordon
parent 998117b3ff
commit 606d2ea87f
1 changed files with 4 additions and 1 deletions

View File

@ -1830,10 +1830,13 @@ elseif(APPLE)
message_error("SDL_FILE must be enabled to build on MacOS X")
endif()
if(IOS OR TVOS)
file(GLOB SDLMAIN_SOURCES ${SDL2_SOURCE_DIR}/src/main/uikit/*.c)
endif()
if(SDL_MISC)
if(IOS OR TVOS)
file(GLOB MISC_SOURCES ${SDL2_SOURCE_DIR}/src/misc/ios/*.m)
file(GLOB SDLMAIN_SOURCES ${SDL2_SOURCE_DIR}/src/main/uikit/*.c)
else()
file(GLOB MISC_SOURCES ${SDL2_SOURCE_DIR}/src/misc/macosx/*.m)
endif()