1
0
mirror of https://github.com/halleysfifthinc/Toyota-AVC-LAN synced 2025-06-07 16:06:12 +00:00

Add RelWithDebInfo build preset

This commit is contained in:
Allen Hill 2023-09-03 19:29:23 -04:00
parent d7af6529ef
commit ba27167b2e

View File

@ -2,14 +2,24 @@
"version": 2, "version": 2,
"configurePresets": [ "configurePresets": [
{ {
"name": "main", "name": "default",
"displayName": "Default", "displayName": "Debug",
"description": "Use Unix Makefiles generator; set build directory", "description": "Configure with Debug build settings",
"generator": "Unix Makefiles", "generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/build", "binaryDir": "${sourceDir}/build",
"cacheVariables": { "cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug" "CMAKE_BUILD_TYPE": "Debug"
} }
},
{
"name": "relwithdebinfo",
"displayName": "RelWithDebInfo",
"description": "Configure with RelWithDebInfo build settings",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
} }
] ]
} }