From 8399fd09b430e37117d1b56b55b947908bb1ea4e Mon Sep 17 00:00:00 2001 From: PM Date: Fri, 5 Sep 2025 18:01:14 -0300 Subject: [PATCH] Build SDL3 example like others --- examples/SDL3-simple-demo/CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/SDL3-simple-demo/CMakeLists.txt b/examples/SDL3-simple-demo/CMakeLists.txt index 75cf435..eb90753 100644 --- a/examples/SDL3-simple-demo/CMakeLists.txt +++ b/examples/SDL3-simple-demo/CMakeLists.txt @@ -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)