neovim/test/config/paths.lua.in

13 lines
349 B
Lua
Raw Normal View History

local module = {}
module.include_paths = {}
for p in ("${TEST_INCLUDE_DIRS}" .. ";"):gmatch("[^;]+") do
table.insert(module.include_paths, p)
end
module.test_include_path = "${CMAKE_BINARY_DIR}/test/includes/post"
module.test_libnvim_path = "${TEST_LIBNVIM_PATH}"
table.insert(module.include_paths, "${CMAKE_BINARY_DIR}/include")
return module