Added CMakeLists.txt for other projects to use

This commit is contained in:
Xavier Del Campo Romero 2020-07-09 16:41:41 +02:00
parent 2b01e38ca2
commit 9c8d949cd1
1 changed files with 4 additions and 0 deletions

4
CMakeLists.txt Normal file
View File

@ -0,0 +1,4 @@
set(lib dynstr)
project(${lib})
add_library(${lib} STATIC "dynstr.c")
target_include_directories(${lib} PUBLIC "include")