diff options
Diffstat (limited to 'plugin/CMakeLists.txt')
| -rw-r--r-- | plugin/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/plugin/CMakeLists.txt b/plugin/CMakeLists.txt new file mode 100644 index 0000000..0cfadc1 --- /dev/null +++ b/plugin/CMakeLists.txt | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | cmake_minimum_required(VERSION 3.0) | ||
| 2 | |||
| 3 | project(plugin) | ||
| 4 | |||
| 5 | add_library(plugin | ||
| 6 | src/plugin.c) | ||
| 7 | |||
| 8 | target_include_directories(plugin PUBLIC | ||
| 9 | include) | ||
| 10 | |||
| 11 | target_link_libraries(plugin PRIVATE | ||
| 12 | cstring | ||
| 13 | list | ||
| 14 | log) | ||
| 15 | |||
| 16 | target_compile_options(plugin PRIVATE -Wall -Wextra) | ||
