forked from RvP93/WorldAirlinersSet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
84 lines (84 loc) · 2.06 KB
/
CMakePresets.json
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"cmakeMinimumRequired": {
"major": 3,
"minor": 23,
"patch": 0
},
"version": 4,
"configurePresets": [
{
"name": "ninja",
"displayName": "Ninja",
"description": "Use Ninja as the generator",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/ninja"
},
{
"name": "make",
"displayName": "Make",
"generator": "Unix Makefiles",
"description": "Use make as the generator",
"binaryDir": "${sourceDir}/build/make"
},
{
"name": "vs",
"displayName": "Visual Studio 2022",
"generator": "Visual Studio 17 2022",
"description": "Use Visual Studio 17 (2022) as the generator",
"binaryDir": "${sourceDir}/build/vs2022"
}
],
"buildPresets": [
{
"name": "ninja-default",
"displayName": "Not Verbose",
"description": "Compile WAS with default settings",
"configurePreset": "ninja"
},
{
"name": "ninja-verbose",
"displayName": "Verbose",
"description": "Compile WAS with verbosity",
"configurePreset": "ninja",
"verbose": true,
"environment": {
"CMAKE_VERBOSE_MAKEFILE": "on",
"VERBOSE": "on"
}
},
{
"name": "make-default",
"displayName": "Not Verbose",
"description": "Compile WAS with default settings",
"configurePreset": "make"
},
{
"name": "make-verbose",
"displayName": "Verbose",
"description": "Compile WAS with verbosity",
"configurePreset": "make",
"verbose": true,
"environment": {
"CMAKE_VERBOSE_MAKEFILE": "on",
"VERBOSE": "on"
}
},
{
"name": "vs-default",
"displayName": "Not Verbose",
"description": "Compile WAS with default settings",
"configurePreset": "vs"
},
{
"name": "vs-verbose",
"displayName": "Verbose",
"description": "Compile WAS with verbosity",
"configurePreset": "vs",
"verbose": true,
"environment": {
"CMAKE_VERBOSE_MAKEFILE": "on",
"VERBOSE": "on"
}
}
]
}