Textractor_test/CMakeSettings.json

49 lines
1.7 KiB
JSON
Raw Normal View History

2018-06-16 07:30:32 +08:00
{
// See https://go.microsoft.com//fwlink//?linkid=834763 for more information about this file.
"configurations": [
{
"name": "x86-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x86" ],
"buildRoot": "${workspaceRoot}\\Builds\\${name}",
2018-06-18 13:16:34 +08:00
"installRoot": "${workspaceRoot}\\CMakeBuilds\\${workspaceHash}\\install\\${name}",
2018-06-16 07:30:32 +08:00
"cmakeCommandArgs": "",
"buildCommandArgs": "-v",
"ctestCommandArgs": ""
},
{
"name": "x86-Release",
"generator": "Ninja",
"configurationType": "Release",
2018-06-16 07:30:32 +08:00
"inheritEnvironments": [ "msvc_x86" ],
"buildRoot": "${workspaceRoot}\\Builds\\${name}",
"installRoot": "${workspaceRoot}\\CMakeBuilds\\${workspaceHash}\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "-v",
"ctestCommandArgs": ""
},
{
"name": "x64-Debug",
"generator": "Ninja",
"configurationType": "Debug",
2018-08-05 10:27:10 +08:00
"inheritEnvironments": [ "msvc_x64" ],
"buildRoot": "${workspaceRoot}\\Builds\\${name}",
"installRoot": "${workspaceRoot}\\CMakeBuilds\\${workspaceHash}\\install\\${name}",
2018-08-05 10:27:10 +08:00
"cmakeCommandArgs": "-Dx64=1",
"buildCommandArgs": "-v",
"ctestCommandArgs": ""
},
{
"name": "x64-Release",
"generator": "Ninja",
"configurationType": "Release",
2018-08-05 10:27:10 +08:00
"inheritEnvironments": [ "msvc_x64" ],
"buildRoot": "${workspaceRoot}\\Builds\\${name}",
2018-06-18 13:16:34 +08:00
"installRoot": "${workspaceRoot}\\CMakeBuilds\\${workspaceHash}\\install\\${name}",
2018-08-05 10:27:10 +08:00
"cmakeCommandArgs": "-Dx64=1",
2018-06-16 07:30:32 +08:00
"buildCommandArgs": "-v",
"ctestCommandArgs": ""
}
]
}