aboutsummaryrefslogtreecommitdiff
path: root/flatcc/src/runtime/CMakeLists.txt
blob: 127e2a47ffaf8c1aad0d4bfd0f99521e4e5fb59a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
include_directories (
    "${PROJECT_SOURCE_DIR}/include"
)

add_library(flatccrt
    builder.c
    emitter.c
    refmap.c
    verifier.c
    json_parser.c
    json_printer.c
)

if (FLATCC_INSTALL)
    install(TARGETS flatccrt DESTINATION ${lib_dir})
endif()