diff options
Diffstat (limited to 'log/CMakeLists.txt')
-rw-r--r-- | log/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/log/CMakeLists.txt b/log/CMakeLists.txt new file mode 100644 index 0000000..490c78c --- /dev/null +++ b/log/CMakeLists.txt | |||
@@ -0,0 +1,9 @@ | |||
1 | cmake_minimum_required(VERSION 3.16) | ||
2 | |||
3 | add_library(log | ||
4 | src/log.c) | ||
5 | |||
6 | target_include_directories(log PUBLIC | ||
7 | include) | ||
8 | |||
9 | target_compile_options(log PRIVATE -Wall -Wextra) | ||