diff options
author | dundargoc <gocdundar@gmail.com> | 2023-11-05 13:17:12 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-05 21:39:24 +0100 |
commit | 8ae39eb58488a75b1e9add2bf12fbf9b10c6f0c8 (patch) | |
tree | 345b392c3240df6d3d4efab395d83f25eb194000 /cmake.deps | |
parent | 397b92e02dbe7996a9da14aac73003fc8ddd1674 (diff) | |
download | rneovim-8ae39eb58488a75b1e9add2bf12fbf9b10c6f0c8.tar.gz rneovim-8ae39eb58488a75b1e9add2bf12fbf9b10c6f0c8.tar.bz2 rneovim-8ae39eb58488a75b1e9add2bf12fbf9b10c6f0c8.zip |
build: remove git requirement
We do not have any patches that we use at the moment, so git is not
needed right now. Futhermore, we've become more strict with not adding
patches, which makes it pretty safe to remove this for the time being.
Diffstat (limited to 'cmake.deps')
-rw-r--r-- | cmake.deps/CMakeLists.txt | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/cmake.deps/CMakeLists.txt b/cmake.deps/CMakeLists.txt index cc331212c4..6dc6fcdc72 100644 --- a/cmake.deps/CMakeLists.txt +++ b/cmake.deps/CMakeLists.txt @@ -57,11 +57,6 @@ endif() option(USE_EXISTING_SRC_DIR "Skip download of deps sources in case of existing source directory." OFF) -find_package(Git) -if(NOT Git_FOUND) - message(FATAL_ERROR "Git is required to apply patches.") -endif() - # If the macOS deployment target is not set manually (via $MACOSX_DEPLOYMENT_TARGET), # fall back to local system version. Needs to be done here and in top-level CMakeLists.txt. if(APPLE) |