Skip to content

Commit

Permalink
fix logic for macOS Intel in Stochastic solver CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed May 25, 2024
1 parent d0e965c commit 88890e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
brew info boost
brew info hdf5
- name: Build Macos AMD
- name: Build Macos ARM
if: matrix.platform == 'macos-14'
run: |
platform=macos
Expand Down
2 changes: 1 addition & 1 deletion Stochastic/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ endif()
#include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../vcommons/include)
#include_directories(${VCELL_MESSAGING_INCLUDE_DIR})
if (APPLE)
if (CMAKE_OS_ARCHITECTURES STREQUAL "x86_64")
if (CMAKE_OSX_ARCHITECTURES STREQUAL "x86_64")
link_directories("/usr/local/Cellar/hdf5/1.14.3/lib")
else ()
link_directories("/opt/homebrew/lib")
Expand Down

0 comments on commit 88890e8

Please sign in to comment.