summaryrefslogtreecommitdiff
path: root/gpr/source/app/common/cJSON/CMakeLists.txt
blob: 0c5348e3d80fef47c5a8704dce820e574443a7e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# library
set( LIB_NAME cJSON )

# get source files
file( GLOB SRC_FILES "*.c" "*.cpp" )

# get include files
file( GLOB INC_FILES "*.h" )

# library
add_library( ${LIB_NAME} STATIC ${SRC_FILES} ${INC_FILES} )

target_link_libraries( ${LIB_NAME} )

# set the folder where to place the projects
set_target_properties( ${LIB_NAME} PROPERTIES FOLDER lib )