mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
build: remove unused dependency penlight (#22334)
This commit is contained in:
parent
5ffd3d035d
commit
020d3e355e
@ -123,17 +123,11 @@ endif()
|
||||
|
||||
if(USE_BUNDLED_BUSTED)
|
||||
if((NOT USE_BUNDLED_LUAJIT) AND USE_BUNDLED_LUA)
|
||||
set(PENLIGHT_DEPENDS luabitop)
|
||||
set(BUSTED_DEPENDS luabitop)
|
||||
else()
|
||||
set(PENLIGHT_DEPENDS lpeg)
|
||||
set(BUSTED_DEPENDS lpeg)
|
||||
endif()
|
||||
|
||||
# penlight
|
||||
add_custom_command(OUTPUT ${ROCKS_DIR}/penlight
|
||||
COMMAND ${LUAROCKS_BINARY} build penlight 1.5.4-1 ${LUAROCKS_BUILDARGS}
|
||||
DEPENDS ${PENLIGHT_DEPENDS})
|
||||
add_custom_target(penlight ALL DEPENDS ${ROCKS_DIR}/penlight)
|
||||
|
||||
# busted
|
||||
if(WIN32)
|
||||
set(BUSTED_EXE "${DEPS_BIN_DIR}/busted.bat")
|
||||
@ -144,7 +138,7 @@ if(USE_BUNDLED_BUSTED)
|
||||
endif()
|
||||
add_custom_command(OUTPUT ${BUSTED_EXE}
|
||||
COMMAND ${LUAROCKS_BINARY} build busted 2.1.1 ${LUAROCKS_BUILDARGS}
|
||||
DEPENDS penlight)
|
||||
DEPENDS ${BUSTED_DEPENDS})
|
||||
add_custom_target(busted ALL DEPENDS ${BUSTED_EXE})
|
||||
|
||||
# luacheck
|
||||
|
Loading…
Reference in New Issue
Block a user