mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-07-24 04:01:04 -04:00
feat: Add Cmake preset
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -74,9 +74,11 @@ CMakeLists.txt.user*
|
|||||||
*.exe
|
*.exe
|
||||||
|
|
||||||
/build
|
/build
|
||||||
|
CMakeUserPresets.json
|
||||||
/.qodeassist
|
/.qodeassist
|
||||||
/.cursor
|
/.cursor
|
||||||
/.vscode
|
/.vscode
|
||||||
.qtc_clangd/compile_commands.json
|
.qtc_clangd/compile_commands.json
|
||||||
CLAUDE.md
|
CLAUDE.md
|
||||||
/.claude
|
/.claude
|
||||||
|
/.qtcreator
|
||||||
|
|||||||
21
CMakePresets.json
Normal file
21
CMakePresets.json
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"cmakeMinimumRequired": { "major": 3, "minor": 23 },
|
||||||
|
"configurePresets": [
|
||||||
|
{
|
||||||
|
"name": "default",
|
||||||
|
"displayName": "Default (pass CMAKE_PREFIX_PATH to a Qt Creator dev package)",
|
||||||
|
"generator": "Ninja",
|
||||||
|
"binaryDir": "${sourceDir}/build",
|
||||||
|
"cacheVariables": {
|
||||||
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"buildPresets": [
|
||||||
|
{
|
||||||
|
"name": "default",
|
||||||
|
"configurePreset": "default"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user