From 7c279316859ef6b4e163c9f037c760269e96b13b Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Wed, 22 Apr 2020 15:31:44 +0200 Subject: [PATCH] cmake qt fix regression --- client/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index 29b90366e..50e0c91f9 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -250,7 +250,7 @@ if (APPLE) set_target_properties(proxmark3 PROPERTIES COMPILE_FLAGS "-I/usr/local/opt/readline/include") else (APPLE) # required for Raspberry Pi, but breaks with clang (OSX). Need to be at the end of the linker line. - set(ADDITIONAL_LNK "-Wl,--as-needed -latomic -Wl,--no-as-needed") + set(ADDITIONAL_LNK ${ADDITIONAL_LNK} -Wl,--as-needed -latomic -Wl,--no-as-needed) endif (APPLE)