blob: 0dab8b673cdb7cfe1337547eca588d2281a7ca26 (
plain)
1
2
3
4
5
6
7
8
9
10
|
include_directories(../)
add_executable(settingstest settingstest.cpp)
add_sanitizers(settingstest)
add_test(settingstest settingstest)
target_link_libraries(settingstest
frameworkplugin
Qt5::Core
Qt5::Concurrent
Qt5::Test
)
|