summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDebian Multimedia Maintainers <debian-multimedia@lists.debian.org>2023-01-12 10:22:28 +0100
committerIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>2023-01-12 10:22:28 +0100
commitba9123aa73c59888e170ff98d6628a202d4438ae (patch)
tree7399f6c8cad9931265cebf8e40850ee0dbfd1156
parent6d69af7d9f71a15a7a2dfe12f15903c74aa8c0d4 (diff)
Fix cmake snippet to link against libatomic
Origin: Debian Bug: https://github.com/Ableton/link/issues/129 Last-Update: 2023-01-12 so it can be used on armel,... Last-Update: 2023-01-12 Gbp-Pq: Name libatomic.patch
-rw-r--r--AbletonLinkConfig.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/AbletonLinkConfig.cmake b/AbletonLinkConfig.cmake
index 854b8e3..1355f6f 100644
--- a/AbletonLinkConfig.cmake
+++ b/AbletonLinkConfig.cmake
@@ -40,12 +40,12 @@ elseif(CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD|GNU")
INTERFACE_LINK_LIBRARIES
pthread
)
- if(${CMAKE_CXX_COMPILER_ID} MATCHES Clang)
+ #if(${CMAKE_CXX_COMPILER_ID} MATCHES Clang)
set_property(TARGET Ableton::Link APPEND PROPERTY
INTERFACE_LINK_LIBRARIES
atomic
)
- endif()
+ #endif()
endif()
include(${CMAKE_CURRENT_LIST_DIR}/cmake_include/AsioStandaloneConfig.cmake)