1{ 2 "configurations": [ 3 { 4 "name": "x64-Debug", 5 "generator": "Ninja", 6 "configurationType": "Debug", 7 "inheritEnvironments": [ "msvc_x64_x64" ], 8 "buildRoot": "${projectDir}\\out\\build\\${name}", 9 "installRoot": "${projectDir}\\out\\install\\${name}", 10 "cmakeCommandArgs": "", 11 "buildCommandArgs": "-v", 12 "ctestCommandArgs": "", 13 "variables": [] 14 }, 15 { 16 "name": "x86-Debug", 17 "generator": "Ninja", 18 "configurationType": "Debug", 19 "buildRoot": "${projectDir}\\out\\build\\${name}", 20 "installRoot": "${projectDir}\\out\\install\\${name}", 21 "cmakeCommandArgs": "", 22 "buildCommandArgs": "-v", 23 "ctestCommandArgs": "", 24 "inheritEnvironments": [ "msvc_x86" ], 25 "variables": [] 26 }, 27 { 28 "name": "x86-Release", 29 "generator": "Ninja", 30 "configurationType": "RelWithDebInfo", 31 "buildRoot": "${projectDir}\\out\\build\\${name}", 32 "installRoot": "${projectDir}\\out\\install\\${name}", 33 "cmakeCommandArgs": "", 34 "buildCommandArgs": "-v", 35 "ctestCommandArgs": "", 36 "inheritEnvironments": [ "msvc_x86" ], 37 "variables": [] 38 }, 39 { 40 "name": "x64-Release", 41 "generator": "Ninja", 42 "configurationType": "RelWithDebInfo", 43 "buildRoot": "${projectDir}\\out\\build\\${name}", 44 "installRoot": "${projectDir}\\out\\install\\${name}", 45 "cmakeCommandArgs": "", 46 "buildCommandArgs": "-v", 47 "ctestCommandArgs": "", 48 "inheritEnvironments": [ "msvc_x64_x64" ], 49 "variables": [] 50 } 51 ] 52}