aboutsummaryrefslogtreecommitdiff
path: root/flatcc/test/monster_test_prefix
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-07-16 02:03:33 +0200
committerToni Uhlig <matzeton@googlemail.com>2023-07-16 02:03:33 +0200
commitb31e4bc16d1df62b50c6f77a77041f9e7b6c906d (patch)
tree024c74c13d918aa6bde302aab6836fa33607613c /flatcc/test/monster_test_prefix
parentba6815ef8fb8ae472412b5af2837a7caba2799c2 (diff)
parent5a40295c4cf0af5ea8da9ced04a4ce7d3621a080 (diff)
Merge commit '5a40295c4cf0af5ea8da9ced04a4ce7d3621a080' as 'flatcc'
Diffstat (limited to 'flatcc/test/monster_test_prefix')
-rw-r--r--flatcc/test/monster_test_prefix/CMakeLists.txt20
-rw-r--r--flatcc/test/monster_test_prefix/monster_test_prefix.c24
2 files changed, 44 insertions, 0 deletions
diff --git a/flatcc/test/monster_test_prefix/CMakeLists.txt b/flatcc/test/monster_test_prefix/CMakeLists.txt
new file mode 100644
index 0000000..1e26761
--- /dev/null
+++ b/flatcc/test/monster_test_prefix/CMakeLists.txt
@@ -0,0 +1,20 @@
+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_prefix ALL)
+add_custom_command (
+ TARGET gen_monster_test_prefix
+ COMMAND ${CMAKE_COMMAND} -E make_directory "${GEN_DIR}"
+ COMMAND flatcc_cli -a --prefix=zzz_ --stdout "${FBS_DIR}/monster_test.fbs" > "${GEN_DIR}/zzz_monster_test.h"
+ DEPENDS flatcc_cli "${FBS_DIR}/monster_test.fbs" "${FBS_DIR}/include_test1.fbs" "${FBS_DIR}/include_test2.fbs"
+)
+add_executable(monster_test_prefix monster_test_prefix.c)
+add_dependencies(monster_test_prefix gen_monster_test_prefix)
+target_link_libraries(monster_test_prefix flatccrt)
+
+add_test(monster_test_prefix monster_test_prefix${CMAKE_EXECUTABLE_SUFFIX})
diff --git a/flatcc/test/monster_test_prefix/monster_test_prefix.c b/flatcc/test/monster_test_prefix/monster_test_prefix.c
new file mode 100644
index 0000000..bb070b2
--- /dev/null
+++ b/flatcc/test/monster_test_prefix/monster_test_prefix.c
@@ -0,0 +1,24 @@
+/* Minimal test with all headers generated into a single file. */
+#include "zzz_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);
+
+ zzz_MyGame_Example_Monster_start_as_root(B);
+ zzz_MyGame_Example_Monster_name_create_str(B, "MyMonster");
+ zzz_MyGame_Example_Monster_end_as_root(B);
+ buf = flatcc_builder_get_direct_buffer(B, &size);
+ ret = zzz_MyGame_Example_Monster_verify_as_root_with_identifier(buf, size, zzz_MyGame_Example_Monster_file_identifier);
+ flatcc_builder_clear(B);
+ return ret;
+}