blob: 9ec8b23055c08527cb7aba2b4389042a300946b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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}"
return module
|