Skip to content

Commit

Permalink
"Removing drivers that are not ARM64 compatible yet from the build so… (
Browse files Browse the repository at this point in the history
  • Loading branch information
rlancaste authored Nov 25, 2024
1 parent d88f390 commit 8ca8da4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,15 @@ IF (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(WITH_AHP_XC Off)
set(WITH_AHP_GT Off)
set(WITH_ASTROASIS Off)
# The drivers below are not yet compatible with Apple Silicon since their libraries are not universal binaries
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
SET(WITH_ASICAM Off)
SET(WITH_SBIG Off)
SET(WITH_ATIK Off)
SET(WITH_TOUPBASE Off)
SET(WITH_QHY Off)
SET(WITH_SVBONY Off)
endif()
ENDIF ()
# Disable apogee, qhy and mi with gcc 4.8 and earlier versions
IF (CMAKE_COMPILER_IS_GNUCXX AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9)
Expand Down

0 comments on commit 8ca8da4

Please sign in to comment.