blob: a13230ed28912be3a994afabdfb85141c23556df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
|