From 0601faf4ec3df399987050c3a12b008666cedaf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?DOTTEL=20Ga=C3=ABl?= Date: Fri, 8 Nov 2024 19:48:20 +0100 Subject: [PATCH] test path --- SerialPrograms/CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/SerialPrograms/CMakeLists.txt b/SerialPrograms/CMakeLists.txt index 4e255c214..4bb556535 100644 --- a/SerialPrograms/CMakeLists.txt +++ b/SerialPrograms/CMakeLists.txt @@ -2154,11 +2154,9 @@ else() # enable dpp integration if ((APPLE) AND (CMAKE_SYSTEM_PROCESSOR MATCHES "(arm64)|(ARM64)")) - message(STATUS "Looking for libdpp at: ${CMAKE_CURRENT_SOURCE_DIR}/../3rdPartyBinaries/libdpp_macos_arm64.a") - add_library(libdpp STATIC IMPORTED) set_target_properties(libdpp PROPERTIES - IMPORTED_LOCATION ../3rdPartyBinaries/libdpp_macos_arm64.a + IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/../3rdPartyBinaries/libdpp_macos_arm64.a" INTERFACE_COMPILE_DEFINITIONS "PA_DPP" INTERFACE_LINK_LIBRARIES "-L/opt/homebrew/lib -lssl -lcrypto -lopus -lsodium -lz" # add dpp's deps )