blob: dab13f59aaa219302b2399a8040a63aee47e6210 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
include(CTest)
set(INC_DIR "${PROJECT_SOURCE_DIR}/include")
set(GEN_DIR "${CMAKE_CURRENT_BINARY_DIR}/generated")
set(FBS_DIR "${PROJECT_SOURCE_DIR}/test/monster_test")
include_directories("${GEN_DIR}" "${INC_DIR}")
add_custom_target(gen_monster_test_concat ALL)
add_custom_command (
TARGET gen_monster_test_concat
COMMAND ${CMAKE_COMMAND} -E make_directory "${GEN_DIR}"
# We could also use the recursive -r option, but this tests adding files manually to the output file.
COMMAND flatcc_cli -cwv --reader -o "${GEN_DIR}" "--outfile=monster_test.h" "${FBS_DIR}/attributes.fbs" "${FBS_DIR}/include_test2.fbs" "${FBS_DIR}/include_test1.fbs" "${FBS_DIR}/monster_test.fbs" DEPENDS flatcc_cli "${FBS_DIR}/monster_test.fbs" "${FBS_DIR}/include_test1.fbs" "${FBS_DIR}/include_test2.fbs" "${FBS_DIR}/attributes.fbs"
)
include_directories("${GEN_DIR}" "${INC_DIR}")
add_executable(monster_test_concat monster_test_concat.c)
add_dependencies(monster_test_concat gen_monster_test_concat)
target_link_libraries(monster_test_concat flatccrt)
add_test(monster_test_concat monster_test_concat${CMAKE_EXECUTABLE_SUFFIX})
|