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 "name": "REACTOR_BACKEND", 16 "value": "Subzero", 17 "type": "STRING" 18 } 19 ] 20 }, 21 { 22 "name": "x86-Debug", 23 "generator": "Ninja", 24 "configurationType": "Debug", 25 "buildRoot": "${projectDir}\\out\\build\\${name}", 26 "installRoot": "${projectDir}\\out\\install\\${name}", 27 "cmakeCommandArgs": "", 28 "buildCommandArgs": "-v", 29 "ctestCommandArgs": "", 30 "inheritEnvironments": [ "msvc_x86" ] 31 }, 32 { 33 "name": "x86-Release", 34 "generator": "Ninja", 35 "configurationType": "RelWithDebInfo", 36 "buildRoot": "${projectDir}\\out\\build\\${name}", 37 "installRoot": "${projectDir}\\out\\install\\${name}", 38 "cmakeCommandArgs": "", 39 "buildCommandArgs": "-v", 40 "ctestCommandArgs": "", 41 "inheritEnvironments": [ "msvc_x86" ] 42 }, 43 { 44 "name": "x64-Release", 45 "generator": "Ninja", 46 "configurationType": "RelWithDebInfo", 47 "buildRoot": "${projectDir}\\out\\build\\${name}", 48 "installRoot": "${projectDir}\\out\\install\\${name}", 49 "cmakeCommandArgs": "", 50 "buildCommandArgs": "-v", 51 "ctestCommandArgs": "", 52 "inheritEnvironments": [ "msvc_x64_x64" ] 53 } 54 ] 55}