15 lines
437 B
Lua
15 lines
437 B
Lua
require("cmake-tools").setup({
|
|
cmake_build_directory = "build",
|
|
cmake_generate_options = { "-DCMAKE_EXPORT_COMPILE_COMMANDS=1" },
|
|
cmake_build_options = {},
|
|
cmake_soft_link_compile_commands = true,
|
|
cmake_compile_commands_from_lsp = false,
|
|
cmake_dap_configuration = {
|
|
name = "cpp",
|
|
type = "codelldb",
|
|
request = "launch",
|
|
stopOnEntry = false,
|
|
runInTerminal = false,
|
|
},
|
|
})
|