aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavier.delcampo@orain.io>2020-07-09 16:41:41 +0200
committerXavier Del Campo Romero <xavier.delcampo@orain.io>2020-07-09 16:41:41 +0200
commit9c8d949cd1df0e52fc70e8dcfae24030dff6ec6c (patch)
tree7b41024169165dde59714ec789207d0ecc620af3 /CMakeLists.txt
parent2b01e38ca2448364b6470e471ebfedf5793638af (diff)
Added CMakeLists.txt for other projects to use
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
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")