Compare commits

...

2 commits

Author SHA1 Message Date
Paul-Marie Masschelier 610970c62b
Merge 8399fd09b4 into 37675089e3 2025-09-19 12:56:44 +03:00
PM 8399fd09b4 Build SDL3 example like others 2025-09-05 18:01:14 -03:00

View file

@ -20,7 +20,6 @@ FetchContent_Declare(
)
message(STATUS "Using SDL via FetchContent")
FetchContent_MakeAvailable(SDL)
set_property(DIRECTORY "${sdl_SOURCE_DIR}" PROPERTY EXCLUDE_FROM_ALL TRUE)
# Download SDL_ttf
FetchContent_Declare(
@ -32,7 +31,6 @@ FetchContent_Declare(
)
message(STATUS "Using SDL_ttf via FetchContent")
FetchContent_MakeAvailable(SDL_ttf)
set_property(DIRECTORY "${sdl_ttf_SOURCE_DIR}" PROPERTY EXCLUDE_FROM_ALL TRUE)
# Download SDL_image
FetchContent_Declare(
@ -44,7 +42,6 @@ FetchContent_Declare(
)
message(STATUS "Using SDL_image via FetchContent")
FetchContent_MakeAvailable(SDL_image)
set_property(DIRECTORY "${SDL_image_SOURCE_DIR}" PROPERTY EXCLUDE_FROM_ALL TRUE)
# Example executable
add_executable(${PROJECT_NAME} main.c)