-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
63 lines (63 loc) · 1.47 KB
/
CMakePresets.json
File metadata and controls
63 lines (63 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"version": 8,
"$schema": "https://cmake.org/cmake/help/latest/_downloads/3e2d73bff478d88a7de0de736ba5e361/schema.json",
"configurePresets": [
{
"name": "debug",
"displayName": "Debug",
"generator": "Ninja",
"binaryDir": "build/debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "release",
"displayName": "Release",
"generator": "Ninja",
"binaryDir": "build/release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "profile",
"displayName": "Profile",
"generator": "Ninja",
"binaryDir": "build/profile",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
}
],
"buildPresets": [
{
"name": "app-debug",
"displayName": "App Debug Build",
"configurePreset": "debug",
"configuration": "Debug",
"targets": ["native"]
},
{
"name": "app-profile",
"displayName": "App Profile Build",
"configurePreset": "profile",
"configuration": "Profile",
"targets": ["native"]
},
{
"name": "app-release",
"displayName": "App Release Build",
"configurePreset": "release",
"configuration": "Release",
"targets": ["native"]
},
{
"name": "tests-debug",
"displayName": "Tests Debug Build",
"configurePreset": "debug",
"configuration": "Debug",
"targets": ["tests"]
}
]
}