diff options
author | Robert Tari <robert@tari.in> | 2022-02-06 16:50:40 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-08 18:28:47 +0100 |
commit | aa72ca24ec07c68b0671c13bcfc40ca048e4e304 (patch) | |
tree | e512bddbc90ffbe214d29e4825d7b6f22f114b3b /tests | |
parent | 6e53e966be76e047135215bdc33cf309d6a7b030 (diff) | |
download | ayatana-indicator-messages-aa72ca24ec07c68b0671c13bcfc40ca048e4e304.tar.gz ayatana-indicator-messages-aa72ca24ec07c68b0671c13bcfc40ca048e4e304.tar.bz2 ayatana-indicator-messages-aa72ca24ec07c68b0671c13bcfc40ca048e4e304.zip |
tests/CMakeLists.txt: Fix potential multicore compile error
fixes https://github.com/AyatanaIndicators/ayatana-indicator-messages/issues/29
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index a43265d..63beacb 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -27,7 +27,7 @@ set_source_files_properties(${HEADERS_GEN} ${SOURCES_GEN} PROPERTIES GENERATED T add_library("indicator-messages-service" STATIC ${HEADERS} ${HEADERS_GEN} ${SOURCES} ${SOURCES_GEN}) target_include_directories("indicator-messages-service" PUBLIC ${PROJECT_DEPS_INCLUDE_DIRS}) target_compile_definitions("indicator-messages-service" PUBLIC G_LOG_DOMAIN="Ayatana-Indicator-Messages") -target_link_libraries("indicator-messages-service") +add_dependencies("indicator-messages-service" "ayatana-indicator-messages-service") # test-gactionmuxer |