Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
format:
name: Format
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Clone repo
uses: actions/checkout@v2
Expand Down
10 changes: 5 additions & 5 deletions lua/cmake-tools/const.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ local const = {
end, -- this is used to specify generate directory for cmake
cmake_compile_commands_options = {
action = "soft_link", -- available options: soft_link, copy, lsp, none
-- soft_link: this will automatically make a soft link from compile commands file to target
-- copy: this will automatically copy compile commands file to target
-- lsp: this will automatically set compile commands file location using lsp
-- none: this will make this option ignored
target = vim.loop.cwd() -- path to directory, this is used only if action == "soft_link" or action == "copy"
-- soft_link: this will automatically make a soft link from compile commands file to target
-- copy: this will automatically copy compile commands file to target
-- lsp: this will automatically set compile commands file location using lsp
-- none: this will make this option ignored
target = vim.loop.cwd(), -- path to directory, this is used only if action == "soft_link" or action == "copy"
},
cmake_kits_path = nil, -- this is used to specify global cmake kits path, see CMakeKits for detailed usage
cmake_variants_message = {
Expand Down