diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-20 11:36:36 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-20 11:36:36 +0100 |
commit | 03aea832aa0bc2edba2cc5ab4d9f8eba42d355be (patch) | |
tree | 053c561c61e4d932c8cb4f8c4008654435906ce6 /game | |
parent | e5a519589c2b016c524230edc9e625826ab08640 (diff) |
add game folder
Diffstat (limited to 'game')
-rw-r--r-- | game/.gitignore | 1 | ||||
-rw-r--r-- | game/CMakeLists.txt | 16 | ||||
-rw-r--r-- | game/main.cpp | 3 |
3 files changed, 20 insertions, 0 deletions
diff --git a/game/.gitignore b/game/.gitignore new file mode 100644 index 0000000..2bd69c0 --- /dev/null +++ b/game/.gitignore @@ -0,0 +1 @@ +asset diff --git a/game/CMakeLists.txt b/game/CMakeLists.txt new file mode 100644 index 0000000..26d937a --- /dev/null +++ b/game/CMakeLists.txt @@ -0,0 +1,16 @@ +cmake_minimum_required(VERSION 3.28) + +set(CMAKE_C_STANDARD 11) +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_EXPORT_COMPILE_COMMANDS 1) +set(CMAKE_BUILD_TYPE Debug) + +project(game C CXX) + +add_subdirectory(../src crepe) +add_executable(main + main.cpp +) + +target_link_libraries(main PUBLIC crepe) + diff --git a/game/main.cpp b/game/main.cpp new file mode 100644 index 0000000..af14ed5 --- /dev/null +++ b/game/main.cpp @@ -0,0 +1,3 @@ +int main() { + +} |