mirror of
https://github.com/neovim/neovim
synced 2025-07-15 16:51:49 +00:00
The files generated by test/includes/CMakeLists.txt have been unused
since commit c49e22d396
. The unittests include the headers in
test/includes directly without any processing, meaning that the
CMakeLists.txt file is no longer necessary.
24 lines
696 B
Lua
24 lines
696 B
Lua
local module = {}
|
|
|
|
module.include_paths = {}
|
|
for p in ("${TEST_INCLUDE_DIRS}" .. ";"):gmatch("[^;]+") do
|
|
table.insert(module.include_paths, p)
|
|
end
|
|
|
|
module.test_build_dir = "${CMAKE_BINARY_DIR}"
|
|
module.test_libnvim_path = "${TEST_LIBNVIM_PATH}"
|
|
module.test_source_path = "${CMAKE_SOURCE_DIR}"
|
|
module.test_lua_prg = "${LUA_PRG}"
|
|
module.test_luajit_prg = ""
|
|
if module.test_luajit_prg == '' then
|
|
if module.test_lua_prg:sub(-6) == 'luajit' then
|
|
module.test_luajit_prg = module.test_lua_prg
|
|
else
|
|
module.test_luajit_prg = nil
|
|
end
|
|
end
|
|
table.insert(module.include_paths, "${CMAKE_BINARY_DIR}/include")
|
|
table.insert(module.include_paths, "${CMAKE_BINARY_DIR}/src/nvim/auto")
|
|
|
|
return module
|