From aa72ca24ec07c68b0671c13bcfc40ca048e4e304 Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Sun, 6 Feb 2022 16:50:40 +0100 Subject: tests/CMakeLists.txt: Fix potential multicore compile error fixes https://github.com/AyatanaIndicators/ayatana-indicator-messages/issues/29 --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3