From 3cc2c952f3ec6d93649328a550f3ec5d10b238e2 Mon Sep 17 00:00:00 2001 From: Marius Gripsgard Date: Tue, 12 Jan 2021 12:18:03 +0100 Subject: Inital commit --- tests/CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/CMakeLists.txt (limited to 'tests/CMakeLists.txt') diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt new file mode 100644 index 0000000..d4c068c --- /dev/null +++ b/tests/CMakeLists.txt @@ -0,0 +1,14 @@ +find_package(GMock) + +include_directories( + ${CMAKE_SOURCE_DIR}/src +) + +add_executable(tst_utils tst_utils.cpp) +target_link_libraries(tst_utils + ayatana-common + + ${GTEST_LIBRARIES} + ${GTEST_BOTH_LIBRARIES} +) +add_test(TstUtils tst_utils) -- cgit v1.2.3