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 /CMakeLists.txt | |
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 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 009b562953..c3b37cbb35 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -309,7 +309,7 @@ ExternalProject_Add(uncrustify CMAKE_ARGS ${DEPS_CMAKE_ARGS} CMAKE_CACHE_ARGS ${DEPS_CMAKE_CACHE_ARGS} EXCLUDE_FROM_ALL TRUE - ${EXTERNALPROJECT_OPTIONS}) + DOWNLOAD_NO_PROGRESS TRUE) option(USE_BUNDLED_BUSTED "Use bundled busted" ON) if(USE_BUNDLED_BUSTED) @@ -322,7 +322,7 @@ if(USE_BUNDLED_BUSTED) BUILD_COMMAND "" INSTALL_COMMAND "" EXCLUDE_FROM_ALL TRUE - ${EXTERNALPROJECT_OPTIONS}) + DOWNLOAD_NO_PROGRESS TRUE) else() add_custom_target(lua-dev-deps) endif() |