2024-12-28 06:15:22 +00:00
|
|
|
cmake_minimum_required(VERSION 3.27)
|
|
|
|
project(SDL2_video_demo C)
|
|
|
|
set(CMAKE_C_STANDARD 99)
|
|
|
|
|
|
|
|
include(FetchContent)
|
|
|
|
set(FETCHCONTENT_QUIET FALSE)
|
|
|
|
|
|
|
|
FetchContent_Declare(
|
|
|
|
SDL2
|
|
|
|
GIT_REPOSITORY "https://github.com/libsdl-org/SDL.git"
|
|
|
|
GIT_TAG "release-2.30.10"
|
|
|
|
GIT_PROGRESS TRUE
|
|
|
|
GIT_SHALLOW TRUE
|
|
|
|
)
|
|
|
|
FetchContent_MakeAvailable(SDL2)
|
|
|
|
|
|
|
|
FetchContent_Declare(
|
|
|
|
SDL2_ttf
|
|
|
|
GIT_REPOSITORY "https://github.com/libsdl-org/SDL_ttf.git"
|
|
|
|
GIT_TAG "release-2.22.0"
|
|
|
|
GIT_PROGRESS TRUE
|
|
|
|
GIT_SHALLOW TRUE
|
|
|
|
)
|
|
|
|
FetchContent_MakeAvailable(SDL2_ttf)
|
|
|
|
|
|
|
|
add_executable(SDL2_video_demo main.c)
|
|
|
|
|
|
|
|
target_compile_options(SDL2_video_demo PUBLIC)
|
|
|
|
target_include_directories(SDL2_video_demo PUBLIC .)
|
|
|
|
|
|
|
|
target_link_libraries(SDL2_video_demo PUBLIC
|
|
|
|
SDL2::SDL2main
|
|
|
|
SDL2::SDL2-static
|
|
|
|
SDL2_ttf::SDL2_ttf-static
|
|
|
|
)
|
2024-12-30 00:28:24 +00:00
|
|
|
|
|
|
|
set(CMAKE_C_FLAGS_DEBUG "-Wall -Werror -Wno-error=missing-braces -DCLAY_DEBUG")
|
|
|
|
set(CMAKE_C_FLAGS_RELEASE "-O3")
|
2024-12-28 06:15:22 +00:00
|
|
|
|
|
|
|
add_custom_command(
|
|
|
|
TARGET SDL2_video_demo POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/resources
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/resources)
|