diff options
author | dundargoc <gocdundar@gmail.com> | 2024-03-18 12:23:53 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-03-23 13:36:12 +0100 |
commit | 2c1e8f7e96926f70151d737ea32f1e6ff3589263 (patch) | |
tree | b15ec6229fcbb724f18a7a7d5db3d10676fd42b7 /cmake.deps/cmake/GetBinaryDeps.cmake | |
parent | 881f5e59173a4f1b9a4cb16e425709e40d79d0e9 (diff) | |
download | rneovim-2c1e8f7e96926f70151d737ea32f1e6ff3589263.tar.gz rneovim-2c1e8f7e96926f70151d737ea32f1e6ff3589263.tar.bz2 rneovim-2c1e8f7e96926f70151d737ea32f1e6ff3589263.zip |
build: use `GIT_REPOSITORY` for local URLs
`GIT_REPOSITORY` will cause cmake to rebuild if local dependency
changes, which isn't the case for `URL`.
Also document how to test a different commits of a dependency.
Diffstat (limited to 'cmake.deps/cmake/GetBinaryDeps.cmake')
-rw-r--r-- | cmake.deps/cmake/GetBinaryDeps.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake.deps/cmake/GetBinaryDeps.cmake b/cmake.deps/cmake/GetBinaryDeps.cmake index 2f1e237588..6d3ce48e4f 100644 --- a/cmake.deps/cmake/GetBinaryDeps.cmake +++ b/cmake.deps/cmake/GetBinaryDeps.cmake @@ -24,7 +24,7 @@ function(GetBinaryDep) BUILD_COMMAND "" INSTALL_COMMAND ${CMAKE_COMMAND} -E make_directory ${DEPS_BIN_DIR} COMMAND "${_gettool_INSTALL_COMMAND}" - ${EXTERNALPROJECT_OPTIONS}) + DOWNLOAD_NO_PROGRESS TRUE) endfunction() # Download executable and move it to DEPS_BIN_DIR @@ -49,5 +49,5 @@ function(GetExecutable) BUILD_COMMAND "" INSTALL_COMMAND ${CMAKE_COMMAND} -E make_directory ${DEPS_BIN_DIR} COMMAND ${CMAKE_COMMAND} -E copy <DOWNLOADED_FILE> ${DEPS_BIN_DIR} - ${EXTERNALPROJECT_OPTIONS}) + DOWNLOAD_NO_PROGRESS TRUE) endfunction() |