diff options
| author | John Szakmeister <john@szakmeister.net> | 2015-03-21 09:47:49 -0400 |
|---|---|---|
| committer | John Szakmeister <john@szakmeister.net> | 2015-03-21 09:47:49 -0400 |
| commit | afae3e25d5fb284482cec7bbc64cb14f4157d6fa (patch) | |
| tree | 0c88961c2179faf9f4afed5db4e3008f7e197717 /third-party | |
| parent | 4fc0291c730f3c42df4692dd91b09cfd806479d7 (diff) | |
| download | rneovim-afae3e25d5fb284482cec7bbc64cb14f4157d6fa.tar.gz rneovim-afae3e25d5fb284482cec7bbc64cb14f4157d6fa.tar.bz2 rneovim-afae3e25d5fb284482cec7bbc64cb14f4157d6fa.zip | |
build: add support for running the tests in junit format
This requires a couple of extra modules that are not installed by
default, and it requires capturing stdout of the tests--otherwise CMake
output is intermixed with the XML output of busted.
Diffstat (limited to 'third-party')
| -rw-r--r-- | third-party/cmake/BuildLuarocks.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/third-party/cmake/BuildLuarocks.cmake b/third-party/cmake/BuildLuarocks.cmake index 48178ff591..bc7eff6279 100644 --- a/third-party/cmake/BuildLuarocks.cmake +++ b/third-party/cmake/BuildLuarocks.cmake @@ -45,6 +45,10 @@ add_custom_command(OUTPUT ${DEPS_LIB_DIR}/luarocks/rocks/stable-busted-deps ARGS build penlight 1.0.0-1 CC=${DEPS_C_COMPILER} LD=${DEPS_C_COMPILER} COMMAND ${DEPS_BIN_DIR}/luarocks ARGS build mediator_lua 1.1-3 CC=${DEPS_C_COMPILER} LD=${DEPS_C_COMPILER} + COMMAND ${DEPS_BIN_DIR}/luarocks + ARGS build luasocket 3.0rc1-2 CC=${DEPS_C_COMPILER} LD=${DEPS_C_COMPILER} + COMMAND ${DEPS_BIN_DIR}/luarocks + ARGS build xml 1.1.1-1 CC=${DEPS_C_COMPILER} LD=${DEPS_C_COMPILER} COMMAND touch ${DEPS_LIB_DIR}/luarocks/rocks/stable-busted-deps DEPENDS luarocks) add_custom_target(stable-busted-deps |