diff options
Diffstat (limited to 'flatcc/test/monster_test_concat/CMakeLists.txt')
-rw-r--r-- | flatcc/test/monster_test_concat/CMakeLists.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/flatcc/test/monster_test_concat/CMakeLists.txt b/flatcc/test/monster_test_concat/CMakeLists.txt new file mode 100644 index 0000000..dab13f5 --- /dev/null +++ b/flatcc/test/monster_test_concat/CMakeLists.txt @@ -0,0 +1,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}) |