Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
mattldawson committed Aug 23, 2024
1 parent d3e7328 commit 6c374fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
gcc_version: [12, 13, 14]
gcc_version: [13, 14]
build_type: [Release]
env:
FC: gfortran-${{ matrix.gcc_version }}
Expand Down
5 changes: 4 additions & 1 deletion python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ target_include_directories(musica_python
)

# Set the rpath for the shared library
if(UNIX)
if(APPLE)
message(STATUS "Building for MacOS")
elseif(UNIX)
message(STATUS "Building for Linux")
set_target_properties(musica_python PROPERTIES
INSTALL_RPATH "$ORIGIN"
BUILD_WITH_INSTALL_RPATH TRUE
Expand Down

0 comments on commit 6c374fa

Please sign in to comment.