-
Notifications
You must be signed in to change notification settings - Fork 379
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Renderers/SDL2] Create initial SDL2 renderer (#115)
Co-authored-by: Junior Rantila <[email protected]>
- Loading branch information
1 parent
bec56e6
commit ac473d6
Showing
9 changed files
with
574 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
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 | ||
) | ||
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Werror -DCLAY_DEBUG") | ||
set(CMAKE_CXX_FLAGS_RELEASE "-O3") | ||
|
||
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) |
Oops, something went wrong.