23 lines
678 B
JSON
23 lines
678 B
JSON
{
|
|
"version": 8,
|
|
"configurePresets": [
|
|
{
|
|
"name": "debug-gcc",
|
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
|
"cacheVariables": {
|
|
"CMAKE_C_COMPILER": "/usr/bin/gcc",
|
|
"CMAKE_CXX_COMPILER": "/usr/bin/g++",
|
|
"CMAKE_BUILD_TYPE": "Debug"
|
|
}
|
|
},
|
|
{
|
|
"name": "release-gcc",
|
|
"binaryDir": "${sourceDir}/build/${presetName}",
|
|
"cacheVariables": {
|
|
"CMAKE_C_COMPILER": "/usr/bin/gcc",
|
|
"CMAKE_CXX_COMPILER": "/usr/bin/g++",
|
|
"CMAKE_BUILD_TYPE": "Release"
|
|
}
|
|
}
|
|
]
|
|
} |