diff options
| author | Ritabrata Das <[email protected]> | 2026-09-09 21:07:21 +0530 |
|---|---|---|
| committer | Ritabrata Das <[email protected]> | 2026-09-09 21:07:21 +0530 |
| commit | ffd968a26826108ca9fb23d46ed5789260852eb7 (patch) | |
| tree | 3861d08dae1c28f547952dbcc16e04ae7b5286b5 /game/CMakeLists.txt | |
intial commit
Diffstat (limited to 'game/CMakeLists.txt')
| -rw-r--r-- | game/CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/game/CMakeLists.txt b/game/CMakeLists.txt new file mode 100644 index 0000000..ac6fc76 --- /dev/null +++ b/game/CMakeLists.txt @@ -0,0 +1,13 @@ +file(GLOB_RECURSE GAME_SOURCES CONFIGURE_DEPENDS + "${CMAKE_CURRENT_SOURCE_DIR}/*.cpp" + "${CMAKE_CURRENT_SOURCE_DIR}/*.cc" + "${CMAKE_CURRENT_SOURCE_DIR}/*.cxx" +) + +file(GLOB_RECURSE GAME_HEADERS CONFIGURE_DEPENDS + "${CMAKE_CURRENT_SOURCE_DIR}/*.hpp" + "${CMAKE_CURRENT_SOURCE_DIR}/*.h" + "${CMAKE_CURRENT_SOURCE_DIR}/*.hh" +) + +target_sources(cirno_day PRIVATE ${GAME_SOURCES} ${GAME_HEADERS}) |
