diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-04-15 22:39:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-15 22:39:30 +0200 |
commit | c8667c8756a211b8597e2e0a80200498b752915d (patch) | |
tree | 83d19a78b6692945380751f6f469dba68c52e6b8 /cmake.deps/cmake | |
parent | 8c6f97bef89da6ad8bde8f935d9983f25b5c59bd (diff) | |
download | rneovim-c8667c8756a211b8597e2e0a80200498b752915d.tar.gz rneovim-c8667c8756a211b8597e2e0a80200498b752915d.tar.bz2 rneovim-c8667c8756a211b8597e2e0a80200498b752915d.zip |
build: various cmake fixes
- Remove unused function argument from GetBinaryDeps
- Remove unused variable LUA_LOAD_PACKAGE_MODULE_SOURCE
- Add LUA_FS_MODULE_SOURCE as a dependency of VIM_MODULE_FILE
Diffstat (limited to 'cmake.deps/cmake')
-rw-r--r-- | cmake.deps/cmake/BuildLuarocks.cmake | 2 | ||||
-rw-r--r-- | cmake.deps/cmake/GetBinaryDeps.cmake | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cmake.deps/cmake/BuildLuarocks.cmake b/cmake.deps/cmake/BuildLuarocks.cmake index 674a7eaee1..9c4f2d08eb 100644 --- a/cmake.deps/cmake/BuildLuarocks.cmake +++ b/cmake.deps/cmake/BuildLuarocks.cmake @@ -1,7 +1,7 @@ # Luarocks recipe. Luarocks is only required when building Neovim. # NOTE: LuaRocks rocks need to "DEPENDS" on the previous module, because # running luarocks in parallel will break, e.g. when some rocks have -# the same dependency.. +# the same dependency. option(USE_BUNDLED_BUSTED "Use the bundled version of busted to run tests." ON) diff --git a/cmake.deps/cmake/GetBinaryDeps.cmake b/cmake.deps/cmake/GetBinaryDeps.cmake index 48e66363d3..a98f0f5062 100644 --- a/cmake.deps/cmake/GetBinaryDeps.cmake +++ b/cmake.deps/cmake/GetBinaryDeps.cmake @@ -5,7 +5,7 @@ # install root. function(GetBinaryDep) cmake_parse_arguments(_gettool - "BUILD_IN_SOURCE" + "" "TARGET" "INSTALL_COMMAND" ${ARGN}) |