From 2388228ac2226e41f44afd4392b9db025c26ae9b Mon Sep 17 00:00:00 2001 From: Franco Venturi Date: Sun, 9 Jun 2024 18:54:36 -0400 Subject: [PATCH] test #4 --- .github/workflows/ci.yml | 2 +- CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 18334b9..f808166 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: run: | otool -L build/libsdrPlaySupport.so echo '--------------------------------------' - otool -l build/libsdrPlaySupport.so + otool -l build/libsdrPlaySupport.so | grep -B1 -A4 LC_RPATH #- name: Install # run: | # cd build diff --git a/CMakeLists.txt b/CMakeLists.txt index ce752b3..0375417 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -72,7 +72,7 @@ endif () if(APPLE) add_custom_command( TARGET sdrPlaySupport POST_BUILD - COMMAND ${CMAKE_INSTALL_NAME_TOOL} -add-rpath /usr/local/lib "$" + COMMAND ${CMAKE_INSTALL_NAME_TOOL} -add_rpath /usr/local/lib "$" COMMAND ${CMAKE_INSTALL_NAME_TOOL} -change libsdrplay_api.so.3 @rpath/libsdrplay_api.so.3 "$" ) endif(APPLE)