diff options
Diffstat (limited to 'filesystem/CMakeLists.txt')
-rw-r--r-- | filesystem/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/filesystem/CMakeLists.txt b/filesystem/CMakeLists.txt index 55430e6..04390f4 100644 --- a/filesystem/CMakeLists.txt +++ b/filesystem/CMakeLists.txt | |||
@@ -3,9 +3,13 @@ cmake_minimum_required(VERSION 3.0) | |||
3 | project(filesystem) | 3 | project(filesystem) |
4 | 4 | ||
5 | add_library(filesystem | 5 | add_library(filesystem |
6 | src/filesystem.c) | 6 | src/filesystem.c |
7 | src/path.c) | ||
7 | 8 | ||
8 | target_include_directories(filesystem PUBLIC | 9 | target_include_directories(filesystem PUBLIC |
9 | include) | 10 | include) |
10 | 11 | ||
12 | target_link_libraries(filesystem PRIVATE | ||
13 | cassert) | ||
14 | |||
11 | target_compile_options(filesystem PRIVATE -Wall -Wextra) | 15 | target_compile_options(filesystem PRIVATE -Wall -Wextra) |