From ec5eb920ba1998df048b47c4f136ce980d1d9c38 Mon Sep 17 00:00:00 2001 From: salaaad2 Date: Mon, 3 Jan 2022 22:55:39 +0100 Subject: I may have an idea --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index d25a131..9a600f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,11 @@ find_package(raylib 3.0 REQUIRED) # Requires at least version 3.0 set(CMAKE_C_STANDARD 11) # Requires C11 standard -add_executable(${PROJECT_NAME} src/main.cpp src/window.cpp src/gameplay.cpp) +add_executable(${PROJECT_NAME} + src/main.cpp + src/window.cpp + src/gameplay.cpp + src/entity.cpp) target_link_libraries(${PROJECT_NAME} raylib m pthread dl) -- cgit v1.2.3