diff options
author | 3gg <3gg@shellblade.net> | 2024-06-15 11:42:48 -0700 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2024-06-15 11:42:48 -0700 |
commit | 04e3ded4c28c0b559620609daaae7b939d776b61 (patch) | |
tree | 55efea02bee351ac01ef764a04105ee9cee69259 /filesystem/CMakeLists.txt | |
parent | 993424547df0d253d546dbe7adee9b2448294b08 (diff) |
Add path.
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) |