stuff-from-scratch/test/test_utils/CMakeLists.txt

15 lines
437 B
CMake
Raw Normal View History

2022-11-30 20:53:17 +00:00
add_library(test_utils STATIC
2022-11-30 18:28:50 +00:00
TestCase.h
2023-01-05 13:16:52 +00:00
TestUtils.h
TestCaseRunner.h
TestFramework.h
2022-11-30 18:28:50 +00:00
TestCaseRunner.cpp
2023-01-05 16:40:27 +00:00
TestUiApplication.h
TestUiApplication.cpp
2022-11-30 18:28:50 +00:00
)
2023-01-05 13:16:52 +00:00
target_include_directories(test_utils PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR})
2023-01-05 16:40:27 +00:00
target_link_libraries(test_utils core client)
2023-01-05 13:16:52 +00:00
set_property(TARGET test_utils PROPERTY FOLDER test)
configure_file(TestDataLocations.h.in TestDataLocations.h)