You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.7 KiB
56 lines
1.7 KiB
{ |
|
"configurations": [ |
|
{ |
|
"name": "Debug", |
|
"generator": "Ninja", |
|
"configurationType": "Debug", |
|
"inheritEnvironments": [ |
|
"msvc_x86" |
|
], |
|
"buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", |
|
"installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}", |
|
"cmakeCommandArgs": "", |
|
"buildCommandArgs": "-v", |
|
"ctestCommandArgs": "" |
|
}, |
|
{ |
|
"name": "Release", |
|
"generator": "Ninja", |
|
"configurationType": "Release", |
|
"inheritEnvironments": [ |
|
"msvc_x86" |
|
], |
|
"buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", |
|
"installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}", |
|
"cmakeCommandArgs": "", |
|
"buildCommandArgs": "-v", |
|
"ctestCommandArgs": "" |
|
}, |
|
{ |
|
"name": "RelWithDebInfo", |
|
"generator": "Ninja", |
|
"configurationType": "RelWithDebInfo", |
|
"inheritEnvironments": [ |
|
"msvc_x86" |
|
], |
|
"buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", |
|
"installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}", |
|
"cmakeCommandArgs": "", |
|
"buildCommandArgs": "-v", |
|
"ctestCommandArgs": "" |
|
}, |
|
{ |
|
"name": "MinSizeRel", |
|
"generator": "Ninja", |
|
"configurationType": "MinSizeRel", |
|
"inheritEnvironments": [ |
|
"msvc_x86" |
|
], |
|
"buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}", |
|
"installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}", |
|
"cmakeCommandArgs": "", |
|
"buildCommandArgs": "-v", |
|
"ctestCommandArgs": "" |
|
} |
|
] |
|
}
|
|
|