added overseer
This commit is contained in:
13
lua/overseer/template/user/cmake/configure.lua
Normal file
13
lua/overseer/template/user/cmake/configure.lua
Normal file
@ -0,0 +1,13 @@
|
||||
return {
|
||||
name = 'CMake Configure for nvim',
|
||||
builder = function()
|
||||
local cwd = vim.fn.getcwd()
|
||||
return {
|
||||
cmd = { 'cmake' },
|
||||
args = { '-B', 'build_nvim',
|
||||
'-S', cwd,
|
||||
'-G', 'Ninja' },
|
||||
cwd = build_nvim,
|
||||
}
|
||||
end,
|
||||
}
|
Reference in New Issue
Block a user