You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
369 B
11 lines
369 B
set(BUILD_SHARED_LIBS ON) |
|
|
|
include(FetchContent_MakeAvailableExcludeFromAll) |
|
include(FetchContent) |
|
FetchContent_Declare(SDL2 |
|
URL https://github.com/libsdl-org/SDL/archive/4cd981609b50ed273d80c635c1ca4c1e5518fb21.tar.gz |
|
URL_HASH MD5=b805579e8bf30dcc543eced3686ee72e |
|
) |
|
FetchContent_MakeAvailableExcludeFromAll(SDL2) |
|
|
|
add_library(SDL2::SDL2 ALIAS SDL2)
|
|
|