diff options
| author | Xavier Del Campo Romero <xavier.delcampo@orain.io> | 2020-07-09 16:41:41 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavier.delcampo@orain.io> | 2020-07-09 16:41:41 +0200 |
| commit | 9c8d949cd1df0e52fc70e8dcfae24030dff6ec6c (patch) | |
| tree | 7b41024169165dde59714ec789207d0ecc620af3 | |
| parent | 2b01e38ca2448364b6470e471ebfedf5793638af (diff) | |
Added CMakeLists.txt for other projects to use
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..29a4c01 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,4 @@ +set(lib dynstr) +project(${lib}) +add_library(${lib} STATIC "dynstr.c") +target_include_directories(${lib} PUBLIC "include") |
