diff options
author | Hampus <hampus@hampusmat.com> | 2021-12-14 22:54:25 +0100 |
---|---|---|
committer | Hampus <hampus@hampusmat.com> | 2021-12-14 22:54:25 +0100 |
commit | 53a73d29f227fc76092e786ffa3bfba7edeae46b (patch) | |
tree | b76bd8777b2b1ac2450066f27a42c18b82c6cf7d /CMakeLists.txt | |
parent | 828c6563124baeff4d80aeefd15b6bbfd7ff86a2 (diff) |
build: improve CMakeLists
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a817aba..f74c218 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,4 +4,9 @@ set(CMAKE_C_STANDARD 11) project(mazerator_project C) -add_subdirectory(src) +file(GLOB SOURCES src/*.c) + +add_executable(mazerator ${SOURCES}) + +SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall") + |