Skip to content
Merged
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
46 changes: 45 additions & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
}
},
{
"name": "Windows Release With Debug Info",
"name": "Windows RelWithDebInfo",
"hidden": false,
"description": "Release configuration with debug symbols",
"generator": "Ninja",
Expand Down Expand Up @@ -180,6 +180,28 @@
"rhs": "Darwin"
}
},
{
"name": "Mac RelWithDebInfo",
"hidden": false,
"description": "Release configuration with debug symbols for macOS",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"CMAKE_C_COMPILER": "/usr/bin/clang",
"CMAKE_CXX_COMPILER": "/usr/bin/clang++",
"CMAKE_OSX_DEPLOYMENT_TARGET": "10.15"
},
"environment": {
"CC": "/usr/bin/clang",
"CXX": "/usr/bin/clang++"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Darwin"
}
},
{
"name": "Linux Debug",
"hidden": false,
Expand Down Expand Up @@ -224,6 +246,28 @@
"rhs": "Linux"
}
},
{
"name": "Linux RelWithDebInfo",
"hidden": false,
"description": "Release configuration with debug symbols for Linux",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"CMAKE_C_COMPILER": "/usr/bin/gcc",
"CMAKE_CXX_COMPILER": "/usr/bin/g++"
},
"environment": {
"CC": "/usr/bin/gcc",
"CXX": "/usr/bin/g++"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
}
},
{
"name": "Linux Debug Perfetto",
"hidden": false,
Expand Down
Loading