2017-08-08 13:53:47 +02:00
|
|
|
{
|
2017-08-15 16:54:01 +09:00
|
|
|
// See https://go.microsoft.com//fwlink//?linkid=834763 for more information about this file.
|
2019-10-14 18:41:16 +11:00
|
|
|
"environments": [
|
|
|
|
{
|
|
|
|
"BuildDir": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build"
|
|
|
|
}
|
|
|
|
],
|
2017-08-15 16:54:01 +09:00
|
|
|
"configurations": [
|
2017-12-01 01:02:01 +11:00
|
|
|
{
|
|
|
|
"name": "x64-Debug",
|
2019-10-14 18:41:16 +11:00
|
|
|
"generator": "Visual Studio 16 2019 Win64",
|
2017-12-01 01:02:01 +11:00
|
|
|
"configurationType": "Debug",
|
2019-10-14 18:41:16 +11:00
|
|
|
"buildRoot": "${env.BuildDir}\\${name}",
|
2017-12-01 01:02:01 +11:00
|
|
|
"cmakeCommandArgs": "-DCMAKE_BUILD_TYPE=\"Debug\"",
|
2019-10-14 18:41:16 +11:00
|
|
|
"buildCommandArgs": "-m -v:minimal",
|
|
|
|
"inheritEnvironments": [
|
|
|
|
"msvc_x64"
|
|
|
|
]
|
2017-12-01 01:02:01 +11:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "x64-Release",
|
2019-10-14 18:41:16 +11:00
|
|
|
"generator": "Visual Studio 16 2019 Win64",
|
2017-12-01 01:02:01 +11:00
|
|
|
"configurationType": "Release",
|
2019-10-14 18:41:16 +11:00
|
|
|
"buildRoot": "${env.BuildDir}\\${name}",
|
|
|
|
"cmakeCommandArgs": "-DCMAKE_BUILD_TYPE=\"RelWithDebInfo\"",
|
|
|
|
"buildCommandArgs": "-m -v:minimal",
|
|
|
|
"inheritEnvironments": [
|
|
|
|
"msvc_x64"
|
|
|
|
]
|
2017-08-15 16:54:01 +09:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|