diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2016-03-15 13:38:58 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2016-03-15 13:38:58 -0500 |
commit | bb4fe392f34fc6f839870967fe273dd1e3d1ed53 (patch) | |
tree | 57576bf50889ed626876503f9f401c270b0b917c /tests/utils | |
parent | 0734731e7296f84ab30ac403886635b7cb89da49 (diff) | |
download | ayatana-indicator-display-bb4fe392f34fc6f839870967fe273dd1e3d1ed53.tar.gz ayatana-indicator-display-bb4fe392f34fc6f839870967fe273dd1e3d1ed53.tar.bz2 ayatana-indicator-display-bb4fe392f34fc6f839870967fe273dd1e3d1ed53.zip |
add new CMakeLists.txt files in tests/utils/ and tests/unit/
Diffstat (limited to 'tests/utils')
-rw-r--r-- | tests/utils/CMakeLists.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/utils/CMakeLists.txt b/tests/utils/CMakeLists.txt new file mode 100644 index 0000000..e458c82 --- /dev/null +++ b/tests/utils/CMakeLists.txt @@ -0,0 +1,17 @@ +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} +) + +add_library( + test-utils + STATIC + qmain.cpp +) + +qt5_use_modules( + test-utils + Core + DBus +) + |