blob: cec97efa1a6a997ba09b35d93d47edaea8887a76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include_directories(
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
)
add_library(
test-utils
STATIC
qmain.cpp
)
target_link_libraries(
test-utils
Qt5::Core
Qt5::DBus
)
|