blob: 23c622f5a3e0bf6d0b58fc3afbd4fe8cd9245de6 [file] [log] [blame]
Nicolas Capens8c13b2f2020-03-06 01:12:01 -05001{
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": "",
Nicolas Capens4ee53092022-02-05 01:53:12 -050013 "variables": [
14 {
15 "name": "REACTOR_BACKEND",
16 "value": "Subzero",
17 "type": "STRING"
18 }
19 ]
Nicolas Capens8c13b2f2020-03-06 01:12:01 -050020 },
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": "",
Nicolas Capens4ee53092022-02-05 01:53:12 -050030 "inheritEnvironments": [ "msvc_x86" ]
Nicolas Capens8c13b2f2020-03-06 01:12:01 -050031 },
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": "",
Nicolas Capens4ee53092022-02-05 01:53:12 -050041 "inheritEnvironments": [ "msvc_x86" ]
Nicolas Capens8c13b2f2020-03-06 01:12:01 -050042 },
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": "",
Nicolas Capens4ee53092022-02-05 01:53:12 -050052 "inheritEnvironments": [ "msvc_x64_x64" ]
Nicolas Capens8c13b2f2020-03-06 01:12:01 -050053 }
54 ]
Ben Clayton5e4e8b02019-08-13 13:01:30 +010055}