aboutsummaryrefslogtreecommitdiff
path: root/third-party/cmake/BuildLuarocks.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'third-party/cmake/BuildLuarocks.cmake')
-rw-r--r--third-party/cmake/BuildLuarocks.cmake12
1 files changed, 6 insertions, 6 deletions
diff --git a/third-party/cmake/BuildLuarocks.cmake b/third-party/cmake/BuildLuarocks.cmake
index 2f83cb8239..dc9d738041 100644
--- a/third-party/cmake/BuildLuarocks.cmake
+++ b/third-party/cmake/BuildLuarocks.cmake
@@ -58,7 +58,7 @@ list(APPEND THIRD_PARTY_DEPS lua-messagepack lpeg)
if(USE_BUNDLED_BUSTED)
# The following are only required if we want to run tests
# with busted
-
+
add_custom_command(OUTPUT ${DEPS_LIB_DIR}/luarocks/rocks/stable-busted-deps
COMMAND ${LUAROCKS_BINARY}
ARGS build lua_cliargs 2.3-3 ${LUAROCKS_BUILDARGS}
@@ -79,25 +79,25 @@ if(USE_BUNDLED_BUSTED)
COMMAND ${LUAROCKS_BINARY}
ARGS build luasocket 3.0rc1-2 ${LUAROCKS_BUILDARGS}
COMMAND ${LUAROCKS_BINARY}
- ARGS build xml 1.1.1-1 ${LUAROCKS_BUILDARGS}
+ ARGS build xml 1.1.2-1 ${LUAROCKS_BUILDARGS}
COMMAND touch ${DEPS_LIB_DIR}/luarocks/rocks/stable-busted-deps
DEPENDS lpeg)
add_custom_target(stable-busted-deps
DEPENDS ${DEPS_LIB_DIR}/luarocks/rocks/stable-busted-deps)
-
+
add_custom_command(OUTPUT ${DEPS_BIN_DIR}/busted
COMMAND ${LUAROCKS_BINARY}
ARGS build https://raw.githubusercontent.com/Olivine-Labs/busted/v2.0.rc8-0/busted-2.0.rc8-0.rockspec ${LUAROCKS_BUILDARGS}
DEPENDS stable-busted-deps)
add_custom_target(busted
DEPENDS ${DEPS_BIN_DIR}/busted)
-
+
add_custom_command(OUTPUT ${DEPS_LIB_DIR}/luarocks/rocks/nvim-client
COMMAND ${LUAROCKS_BINARY}
- ARGS build https://raw.githubusercontent.com/neovim/lua-client/8cc5b6090ac61cd0bba53ba984f15792fbb64573/nvim-client-0.0.1-11.rockspec ${LUAROCKS_BUILDARGS} LIBUV_DIR=${DEPS_INSTALL_DIR}
+ ARGS build https://raw.githubusercontent.com/neovim/lua-client/0.0.1-12/nvim-client-0.0.1-12.rockspec ${LUAROCKS_BUILDARGS} LIBUV_DIR=${DEPS_INSTALL_DIR}
DEPENDS busted libuv)
add_custom_target(nvim-client
DEPENDS ${DEPS_LIB_DIR}/luarocks/rocks/nvim-client)
-
+
list(APPEND THIRD_PARTY_DEPS stable-busted-deps busted nvim-client)
endif()