summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorBoredGuy <osome3717@gmail.com>2026-03-23 17:11:28 +0300
committerBoredGuy <osome3717@gmail.com>2026-03-23 17:11:28 +0300
commit7c438c2a0e25d22323b5def545f32e97eee689f0 (patch)
treea9e2cf29a967c88d022ea8e6c20a522a9c482610 /CMakeLists.txt
parent6dbd16cd920b51bc24b60d0561bd707ff8862cc5 (diff)
Asset system
- Multiple entity updates
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1c31b68..69e8131 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -12,6 +12,8 @@ add_executable(game
"src/game.h"
"src/player.h"
"src/wall.h"
+ "src/utils.h"
+ "src/assets.h"
#===========SOURCES===============
"src/settings.c"
"src/main.c"
@@ -20,6 +22,8 @@ add_executable(game
"src/game.c"
"src/player.c"
"src/wall.c"
+ "src/utils.c"
+ "src/assets.c"
)
target_link_libraries(game PRIVATE raylib)