diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d0f185b..6f9e256 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,10 +4,11 @@ cmake_minimum_required(VERSION 3.11) project(KillaFacsista VERSION 1.0) set(C_STANDARD 99) +set(C_STANDARD_REQUIRED ON) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # Add source files. -file(GLOB SRC_FILES src/*.c) +file(GLOB SRC_FILES src/*.c src/entities/*.c) add_executable(${PROJECT_NAME} ${SRC_FILES}) |