1
0
mirror of https://github.com/halleysfifthinc/Toyota-AVC-LAN synced 2025-06-06 15:36:47 +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,
"configurePresets": [
{
"name": "main",
"displayName": "Default",
"description": "Use Unix Makefiles generator; set build directory",
"name": "default",
"displayName": "Debug",
"description": "Configure with Debug build settings",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"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"
}
}
]
}