diff options
Diffstat (limited to 'test/monster_test_solo')
-rw-r--r-- | test/monster_test_solo/CMakeLists.txt | 21 | ||||
-rw-r--r-- | test/monster_test_solo/monster_test_solo.c | 24 |
2 files changed, 45 insertions, 0 deletions
diff --git a/test/monster_test_solo/CMakeLists.txt b/test/monster_test_solo/CMakeLists.txt new file mode 100644 index 0000000..a974434 --- /dev/null +++ b/test/monster_test_solo/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_solo ALL) +add_custom_command ( + TARGET gen_monster_test_solo + COMMAND ${CMAKE_COMMAND} -E make_directory "${GEN_DIR}" + COMMAND flatcc_cli -cwv --reader --stdout "${FBS_DIR}/attributes.fbs" "${FBS_DIR}/include_test2.fbs" "${FBS_DIR}/include_test1.fbs" "${FBS_DIR}/monster_test.fbs" > "${GEN_DIR}/monster_test.h" 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_solo monster_test_solo.c) +add_dependencies(monster_test_solo gen_monster_test_solo) +target_link_libraries(monster_test_solo flatccrt) + +add_test(monster_test_solo monster_test_solo${CMAKE_EXECUTABLE_SUFFIX}) diff --git a/test/monster_test_solo/monster_test_solo.c b/test/monster_test_solo/monster_test_solo.c new file mode 100644 index 0000000..3005580 --- /dev/null +++ b/test/monster_test_solo/monster_test_solo.c @@ -0,0 +1,24 @@ +/* Minimal test with all headers generated into a single file. */ +#include "monster_test.h" + +int main(int argc, char *argv[]) +{ + int ret; + void *buf; + size_t size; + flatcc_builder_t builder, *B; + + (void)argc; + (void)argv; + + B = &builder; + flatcc_builder_init(B); + + MyGame_Example_Monster_start_as_root(B); + MyGame_Example_Monster_name_create_str(B, "MyMonster"); + MyGame_Example_Monster_end_as_root(B); + buf = flatcc_builder_get_direct_buffer(B, &size); + ret = MyGame_Example_Monster_verify_as_root(buf, size); + flatcc_builder_clear(B); + return ret; +} |