Skip to content

Commit

Permalink
Merge pull request #107 from ThomasDuvinage/master
Browse files Browse the repository at this point in the history
[CI] fix macos CI
  • Loading branch information
ThomasDuvinage authored Oct 28, 2024
2 parents a0bc036 + ab31507 commit e602a60
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ jobs:
apt: cython cython3 python-pytest python3-pytest python-numpy python3-numpy python-coverage python3-coverage python-setuptools python3-setuptools libeigen3-dev doxygen doxygen-latex libboost-all-dev libtinyxml2-dev libyaml-cpp-dev
macos: |
cask: gfortran
brew: eigen boost tinyxml2 yaml-cpp
pip: Cython coverage pytest numpy
brew: eigen boost tinyxml2 yaml-cpp pipx
pipx: Cython coverage pytest numpy
windows: |
pip: Cython coverage pytest numpy
github:
Expand Down
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ include(cmake/msvc-specific.cmake)

project(Tasks CXX)

if(UNIX AND NOT EMSCRIPTEN AND NOT (APPLE AND CMAKE_SYSTEM_PROCESSOR MATCHES "arm"))
if(UNIX
AND NOT EMSCRIPTEN
AND NOT (APPLE AND CMAKE_SYSTEM_PROCESSOR MATCHES "arm")
)
include(CheckCXXSourceCompiles)
check_cxx_compiler_flag("-msse2" SSE2_SUPPORTED)
if(SSE2_SUPPORTED)
Expand Down

0 comments on commit e602a60

Please sign in to comment.