aboutsummaryrefslogtreecommitdiff
path: root/game
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-20 11:36:36 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-20 11:36:36 +0100
commit03aea832aa0bc2edba2cc5ab4d9f8eba42d355be (patch)
tree053c561c61e4d932c8cb4f8c4008654435906ce6 /game
parente5a519589c2b016c524230edc9e625826ab08640 (diff)
add game folder
Diffstat (limited to 'game')
-rw-r--r--game/.gitignore1
-rw-r--r--game/CMakeLists.txt16
-rw-r--r--game/main.cpp3
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() {
+
+}