From 1420ff343d0c622f4f09f5a88d6599593c260b1b Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Sat, 21 Oct 2023 17:45:33 -0700 Subject: [PATCH] tests: simple test example should be a standalone demo. --- CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6f83114..d09aa9b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -123,11 +123,13 @@ generate_test(orientation) generate_test(quaternion) generate_test(vector) + +# test tooling add_executable(flags-demo test/flags.cc) target_link_libraries(flags-demo ${PROJECT_NAME}) -# test tooling -generate_test(simple_suite_example) +add_executable(simple-test-demo test/simple_suite_example.cc) +target_link_libraries(simple-test-demo ${PROJECT_NAME}) include(CMakePackageConfigHelpers) write_basic_package_version_file(