CMakeSettings.json /size: 2746 b    last modification: 2024-01-16 10:21
1{
2    "configurations": [
3        {
4            "name": "msvc-x64-debug",
5            "generator": "Ninja",
6            "configurationType": "Debug",
7            "inheritEnvironments": [ "msvc_x64_x64" ],
8            "buildRoot": "${projectDir}\\build\\${name}",
9            "installRoot": "${projectDir}\\..\\install\\${name}",
10            "cmakeCommandArgs": "",
11            "buildCommandArgs": "-v",
12            "ctestCommandArgs": ""
13        },
14        {
15            "name": "msvc-x64-release",
16            "generator": "Ninja",
17            "configurationType": "Release",
18            "buildRoot": "${projectDir}\\build\\${name}",
19            "installRoot": "${projectDir}\\..\\install\\${name}",
20            "cmakeCommandArgs": "",
21            "buildCommandArgs": "-v",
22            "ctestCommandArgs": "",
23            "inheritEnvironments": [ "msvc_x64_x64" ]
24        },
25        {
26            "name": "msvc-x64-clang",
27            "generator": "Ninja",
28            "configurationType": "Release",
29            "buildRoot": "${projectDir}\\build\\${name}",
30            "installRoot": "${projectDir}\\..\\install\\${name}",
31            "cmakeCommandArgs": "",
32            "buildCommandArgs": "-v",
33            "ctestCommandArgs": "",
34            "inheritEnvironments": [ "clang_cl_x64" ]
35        },
36        {
37            "name": "msvc-arm64-release",
38            "generator": "Ninja",
39            "configurationType": "Debug",
40            "inheritEnvironments": [ "msvc_arm64_x64" ],
41            "buildRoot": "${projectDir}\\build\\${name}",
42            "installRoot": "${projectDir}\\..\\install\\${name}",
43            "cmakeCommandArgs": "",
44            "buildCommandArgs": "-v",
45            "ctestCommandArgs": ""
46        },
47        {
48            "name": "wsl-gcc-release",
49            "generator": "Ninja",
50            "configurationType": "RelWithDebInfo",
51            "buildRoot": "${projectDir}\\out\\build\\${name}",
52            "installRoot": "${projectDir}\\out\\install\\${name}",
53            "cmakeExecutable": "cmake",
54            "cmakeCommandArgs": "",
55            "buildCommandArgs": "",
56            "ctestCommandArgs": "",
57            "inheritEnvironments": [ "linux_x64" ],
58            "wslPath": "${defaultWSLPath}",
59            "addressSanitizerRuntimeFlags": "detect_leaks=0"
60        },
61        {
62            "name": "msvc-x86-release",
63            "generator": "Ninja",
64            "configurationType": "Release",
65            "buildRoot": "${projectDir}\\build\\${name}",
66            "installRoot": "${projectDir}\\..\\install\\${name}",
67            "cmakeCommandArgs": "",
68            "buildCommandArgs": "-v",
69            "ctestCommandArgs": "",
70            "inheritEnvironments": [ "msvc_x86_x64" ]
71        }
72    ]
73}