Skip to content

Commit

Permalink
setting apple build flags in cmakelists
Browse files Browse the repository at this point in the history
  • Loading branch information
oulap committed Sep 27, 2024
1 parent b251c50 commit d4df6a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,11 @@ message(STATUS "ITK_DIR=${ITK_DIR} pybind11_DIR=${pybind11_DIR}")
# --------------------------------------------------
# set -DAPPLE_ARM64=ON on cmake command line for arm64 build
# when building with freesurfer, CMAKE_C_COMPILER and CMAKE_CXX_COMPILER will be specified on the cmake command line
if(APPLE_ARM64)
if("${APPLE_ARM64} STREQUAL "ON")
set(CMAKE_OSX_ARCHITECTURES "arm64")
add_definitions(-DARM64 -DDarwin -DPNG_ARM_NEON_OPT=0)
else()
set(CMAKE_OSX_ARCHITECTURES "x86_64")
endif()
message(STATUS "CMAKE_C_COMPILER=${CMAKE_C_COMPILER}, CMAKE_C_COMPILER_ID=${CMAKE_C_COMPILER_ID}, CMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}, CMAKE_CXX_COMPILER_ID=${CMAKE_CXX_COMPILER_ID}")
Expand Down

0 comments on commit d4df6a0

Please sign in to comment.