From 9c8d949cd1df0e52fc70e8dcfae24030dff6ec6c Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Thu, 9 Jul 2020 16:41:41 +0200 Subject: [PATCH] Added CMakeLists.txt for other projects to use --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 CMakeLists.txt 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")