From 8d9b056c8cbb94b1cc8fa76f4e1ff0ba61f6e356 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Mon, 16 Dec 2024 21:37:11 +0100 Subject: [PATCH] build: Fixed building of unit tests --- tests/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 832206c1f..4b142e692 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,10 +1,10 @@ project(unit_tests) -add_dependencies(unit_tests imhex_all helpers algorithms plugins) - add_subdirectory(common) target_compile_definitions(tests_common PUBLIC IMHEX_PROJECT_NAME="${PROJECT_NAME}") add_subdirectory(helpers) add_subdirectory(algorithms) add_subdirectory(plugins) + +add_dependencies(unit_tests imhex_all helpers algorithms plugins) \ No newline at end of file