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
1 change: 1 addition & 0 deletions barretenberg.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@
"cmake.configureArgs": [
"--preset clang15",
"-G Ninja",
"-g"
],
"cmake.useCMakePresets": "auto",
},
Expand Down
19 changes: 19 additions & 0 deletions cpp/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@
"CXX": "clang++-15"
}
},
{
"name": "clang15-dbg",
"displayName": "Debugging build with Clang-15",
"description": "Build with globally installed Clang-15 in debug mode",
"inherits": "clang15",
"environment": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "gcc",
"displayName": "Build with GCC",
Expand Down Expand Up @@ -130,6 +139,11 @@
"inherits": "default",
"configurePreset": "clang15"
},
{
"name": "clang15-dbg",
"inherits": "default",
"configurePreset": "clang15-dbg"
},
{
"name": "gcc",
"inherits": "default",
Expand Down Expand Up @@ -181,6 +195,11 @@
"inherits": "default",
"configurePreset": "clang15"
},
{
"name": "clang15-dbg",
"inherits": "default",
"configurePreset": "clang15-dbg"
},
{
"name": "gcc",
"inherits": "default",
Expand Down