Skip to content

Commit c1b24ae

Browse files
committed
add cmake support
1 parent b1b09b5 commit c1b24ae

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

CMakeLists.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
cmake_minimum_required(VERSION 3.5.0)
2+
project(libjsonparser)
3+
4+
set(JSON_PARSER_SRC
5+
json.c
6+
json.h
7+
)
8+
9+
ADD_LIBRARY(
10+
libjsonparser
11+
STATIC
12+
${JSON_PARSER_SRC}
13+
)

0 commit comments

Comments
 (0)