aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2024-03-23 21:28:46 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-03-24 20:58:30 +0100
commit036f86feaccb25d8552c4bf4d216f7f2a9205325 (patch)
tree0382c9d76d83cf0018f104d8160d4c7ff1722923 /cmake
parent011585f35fee83c27e6db91a4ed0feff362efa75 (diff)
downloadrneovim-036f86feaccb25d8552c4bf4d216f7f2a9205325.tar.gz
rneovim-036f86feaccb25d8552c4bf4d216f7f2a9205325.tar.bz2
rneovim-036f86feaccb25d8552c4bf4d216f7f2a9205325.zip
ci: provide separate macos releases for intel and arm
This will immensely reduce the complexity required to support both architectures, reduce overall lines of code and unblock follow-up simplifications.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Deps.cmake7
1 files changed, 0 insertions, 7 deletions
diff --git a/cmake/Deps.cmake b/cmake/Deps.cmake
index 2e9a78ee22..7a098415d7 100644
--- a/cmake/Deps.cmake
+++ b/cmake/Deps.cmake
@@ -18,8 +18,6 @@ if(APPLE)
list(APPEND DEPS_CMAKE_ARGS -D CMAKE_FIND_FRAMEWORK=${CMAKE_FIND_FRAMEWORK})
endif()
-set(DEPS_CMAKE_CACHE_ARGS -DCMAKE_OSX_ARCHITECTURES:STRING=${CMAKE_OSX_ARCHITECTURES})
-
# MAKE_PRG
if(UNIX)
find_program(MAKE_PRG NAMES gmake make)
@@ -48,11 +46,6 @@ set(DEPS_C_COMPILER "${CMAKE_C_COMPILER}")
if(CMAKE_OSX_SYSROOT)
set(DEPS_C_COMPILER "${DEPS_C_COMPILER} -isysroot${CMAKE_OSX_SYSROOT}")
endif()
-if(CMAKE_OSX_ARCHITECTURES)
- foreach(ARCH IN LISTS CMAKE_OSX_ARCHITECTURES)
- set(DEPS_C_COMPILER "${DEPS_C_COMPILER} -arch ${ARCH}")
- endforeach()
-endif()
function(get_externalproject_options name DEPS_IGNORE_SHA)
string(TOUPPER ${name} name_allcaps)