summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a1560e9..c8989c5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -12,10 +12,14 @@ add_executable(game
"include/constants.h"
"include/physics.h"
"include/player.h"
+ "include/assets.h"
+ "include/background.h"
"src/game.c"
"src/main.c"
"src/player.c"
+ "src/assets.c"
+ "src/background.c"
)
target_include_directories(game PRIVATE "include")
@@ -31,4 +35,4 @@ endif()
if (MSVC)
target_link_libraries(game winmm)
-endif() \ No newline at end of file
+endif()