mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
14 lines
397 B
Lua
14 lines
397 B
Lua
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}"
|
|
module.test_source_path = "${CMAKE_SOURCE_DIR}"
|
|
table.insert(module.include_paths, "${CMAKE_BINARY_DIR}/include")
|
|
|
|
return module
|