fixing SDL2 if can't be found

This commit is contained in:
Noel Berry 2021-04-02 10:56:07 -07:00
parent 0c3cac2d08
commit 14a53c0f3a
2 changed files with 11 additions and 5 deletions

View File

@ -122,7 +122,11 @@ if (PLATFORM_SDL2)
add_subdirectory(${sdl2_SOURCE_DIR} ${sdl2_BINARY_DIR}) add_subdirectory(${sdl2_SOURCE_DIR} ${sdl2_BINARY_DIR})
endif() endif()
endif() # statically link SDL2 since we're building it ourselves
set(LIBS ${LIBS} SDL2main SDL2-static)
target_include_directories(blah PUBLIC ${sdl2_SOURCE_DIRS}/include)
else()
# Add Library and Include Dirs # Add Library and Include Dirs
set(LIBS ${LIBS} ${SDL2_LIBRARIES}) set(LIBS ${LIBS} ${SDL2_LIBRARIES})
@ -130,6 +134,8 @@ if (PLATFORM_SDL2)
endif() endif()
endif()
# use the Win32 Platform Backend # use the Win32 Platform Backend
elseif (PLATFORM_WIN32) elseif (PLATFORM_WIN32)