mirror of
https://github.com/NoelFB/blah.git
synced 2025-04-05 00:16:05 +08:00
added optional CMake vars for SDL2 in case you load it yourself
This commit is contained in:
parent
b2bcf66a37
commit
79af2944f3
@ -70,6 +70,7 @@ if (BLAH_PLATFORM_SDL2)
|
|||||||
|
|
||||||
# Pull SDL2 from its Github repo
|
# Pull SDL2 from its Github repo
|
||||||
else()
|
else()
|
||||||
|
if (NOT DEFINED BLAH_SDL2_LIBS)
|
||||||
include(FetchContent)
|
include(FetchContent)
|
||||||
set(FETCHCONTENT_QUIET FALSE)
|
set(FETCHCONTENT_QUIET FALSE)
|
||||||
|
|
||||||
@ -80,10 +81,13 @@ if (BLAH_PLATFORM_SDL2)
|
|||||||
GIT_PROGRESS TRUE
|
GIT_PROGRESS TRUE
|
||||||
)
|
)
|
||||||
FetchContent_MakeAvailable(SDL2)
|
FetchContent_MakeAvailable(SDL2)
|
||||||
|
set(BLAH_SDL2_LIBS SDL2main SDL2-static)
|
||||||
|
set(BLAH_SDL2_INCLUDE ${sdl2_SOURCE_DIRS}/include)
|
||||||
|
endif()
|
||||||
|
|
||||||
# statically link SDL2 since we're building it ourselves
|
# statically link SDL2 since we're building it ourselves
|
||||||
set(LIBS ${LIBS} SDL2main SDL2-static)
|
set(LIBS ${LIBS} ${BLAH_SDL2_LIBS})
|
||||||
target_include_directories(blah PRIVATE ${sdl2_SOURCE_DIRS}/include)
|
target_include_directories(blah PRIVATE ${BLAH_SDL2_INCLUDE})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# use the Win32 Platform Backend
|
# use the Win32 Platform Backend
|
||||||
|
Loading…
Reference in New Issue
Block a user