Skip to content

Commit 1867f04

Browse files
committed
Start switch to Clay
1 parent 135a145 commit 1867f04

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,9 @@
77
[submodule "dependencies/json"]
88
path = dependencies/json
99
url = https://github.com/nlohmann/json
10+
[submodule "dependencies/clay"]
11+
path = dependencies/clay
12+
url = https://github.com/nicbarker/clay.git
13+
[submodule "dependencies/sdl_image"]
14+
path = dependencies/sdl_image
15+
url = https://github.com/libsdl-org/SDL_image.git

dependencies/CMakeLists.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
set(CLAY_INCLUDE_ALL_EXAMPLES OFF CACHE BOOL "Build all examples" FORCE)
2+
add_subdirectory(clay)
3+
14
set(JSON_BuildTests OFF CACHE INTERNAL "")
25
add_subdirectory(json)
36

47
if(SDL_VENDORED)
58
add_subdirectory(sdl EXCLUDE_FROM_ALL)
9+
add_subdirectory(sdl_image EXCLUDE_FROM_ALL)
10+
add_subdirectory(sdl_ttf EXCLUDE_FROM_ALL)
611
else()
712
find_package(SDL3 REQUIRED CONFIG REQUIRED COMPONENTS SDL3-shared)
8-
endif()
9-
10-
add_subdirectory(sdl_ttf)
13+
endif()

dependencies/clay

Submodule clay added at a9e94e3

dependencies/sdl

Submodule sdl updated 100 files

dependencies/sdl_image

Submodule sdl_image added at 5df4a32

0 commit comments

Comments
 (0)