From e3779b99a071447cf8b6781a8ae6b414d6106b82 2018-10-18 17:57:21 From: Alexis Jeandet Date: 2018-10-18 17:57:21 Subject: [PATCH] Added build interface for TestUtils TestUtils is now used in GUI unit tests so include path propagation is now needed. Signed-off-by: Alexis Jeandet --- diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index dba4b56..441c4b1 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -7,6 +7,9 @@ FILE (GLOB_RECURSE TestUtilsSources add_library(TestUtils ${TestUtilsSources}) target_link_libraries(TestUtils sciqlopcore Qt5::Test) +target_include_directories(TestUtils PUBLIC + $/TestUtils +) declare_test(TestStringUtils TestStringUtils Common/TestStringUtils.cpp "sciqlopcore;Qt5::Test")