blob: c3ce54c98f26589808825b32f2f15efc26e20afd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
add_executable(readfile readfile.c)
target_link_libraries(readfile cbor)
add_executable(create_items create_items.c)
target_link_libraries(create_items cbor)
add_executable(streaming_parser streaming_parser.c)
target_link_libraries(streaming_parser cbor)
add_executable(sort sort.c)
target_link_libraries(sort cbor)
add_executable(hello hello.c)
target_link_libraries(hello cbor)
find_package(cJSON)
if(cJSON_FOUND)
add_executable(cjson2cbor cjson2cbor.c)
target_link_libraries(cjson2cbor cbor cjson)
endif()
file(COPY data DESTINATION .)
|