diff options
Diffstat (limited to 'cstring/CMakeLists.txt')
-rw-r--r-- | cstring/CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cstring/CMakeLists.txt b/cstring/CMakeLists.txt new file mode 100644 index 0000000..67fb366 --- /dev/null +++ b/cstring/CMakeLists.txt | |||
@@ -0,0 +1,11 @@ | |||
1 | cmake_minimum_required(VERSION 3.16) | ||
2 | |||
3 | project(cstring) | ||
4 | |||
5 | add_library(cstring INTERFACE) | ||
6 | |||
7 | target_include_directories(cstring INTERFACE | ||
8 | include) | ||
9 | |||
10 | target_link_libraries(cstring INTERFACE | ||
11 | -lbsd) | ||