From 1f75a21851b0a0bd4bc766c458e67721dd37c9fd Mon Sep 17 00:00:00 2001 From: sanine Date: Mon, 22 Aug 2022 21:37:12 -0500 Subject: add append_table() --- src/test/CMakeLists.txt | 6 ++++++ src/test/honey-test.h | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 src/test/CMakeLists.txt (limited to 'src/test') diff --git a/src/test/CMakeLists.txt b/src/test/CMakeLists.txt new file mode 100644 index 0000000..6b86edc --- /dev/null +++ b/src/test/CMakeLists.txt @@ -0,0 +1,6 @@ +project(honey_engine) + +target_sources(test PUBLIC + ${CMAKE_CURRENT_LIST_DIR}/honey-test.c + ${CMAKE_CURRENT_LIST_DIR}/lily-test.c +) diff --git a/src/test/honey-test.h b/src/test/honey-test.h index 30730d5..03218a4 100644 --- a/src/test/honey-test.h +++ b/src/test/honey-test.h @@ -31,10 +31,12 @@ void suite_logging(); void suite_gl(); void suite_window(); +void suite_util(); #define RUN_TESTS() \ lily_run_suite(suite_logging); \ lily_run_suite(suite_gl); \ lily_run_suite(suite_window); \ + lily_run_suite(suite_util); \ #endif -- cgit v1.2.1