diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..506c820a --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 3.5.0) +project(libjsonparser) + +set(JSON_PARSER_SRC + json.c + json.h +) + +ADD_LIBRARY( + libjsonparser + STATIC + ${JSON_PARSER_SRC} +) \ No newline at end of file