diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/CMakeLists.txt | 6 | ||||
-rw-r--r-- | src/test/honey-test.h | 2 |
2 files changed, 8 insertions, 0 deletions
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 |