-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeUserPresets.json
70 lines (70 loc) · 2.59 KB
/
CMakeUserPresets.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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "mgcc-deb",
"displayName": "GMake GCC Debug",
"description": "Generated by Ninja with GCC base debug preset.",
"generator": "Unix Makefiles",
"inherits": [
"gcc-deb"
],
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"CMAKE_C_STANDARD": "11",
"CMAKE_CXX_STANDARD": "20",
"CMAKE_C_COMPILER": "gcc-12",
"CMAKE_CXX_COMPILER": "g++-12",
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_RUNTIME_OUTPUT_DIRECTORY": "${sourceDir}/build/deb",
"CMAKE_C_FLAGS":
"-g3 -Wall -Wextra -Wfloat-equal -Wtype-limits -Wpointer-arith -Wshadow -Winit-self -fno-diagnostics-show-option -fcf-protection=none -fno-pic -fpie -D_GNU_SOURCE",
"CMAKE_CXX_FLAGS": "-g3 -Wall -Wextra -D_GNU_SOURCE"
}
},
{
"name": "mgcc-rel",
"displayName": "GMake GCC Release",
"description": "Generated by Ninja with GCC base release preset.",
"generator": "Unix Makefiles",
"inherits": [
"gcc-rel"
],
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"CMAKE_C_STANDARD": "11",
"CMAKE_CXX_STANDARD": "20",
"CMAKE_C_COMPILER": "gcc-12",
"CMAKE_CXX_COMPILER": "g++-12",
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_RUNTIME_OUTPUT_DIRECTORY": "${sourceDir}/build/rel",
"CMAKE_C_FLAGS":
"-Wall -Wextra -Wfloat-equal -Wtype-limits -Wpointer-arith -Wshadow -Winit-self -fno-diagnostics-show-option -fcf-protection=none -fno-pic -fpie -D_GNU_SOURCE",
"CMAKE_CXX_FLAGS": "-D_GNU_SOURCE"
}
},
{
"name": "nclang-deb",
"displayName": "Ninja Clang Debug",
"description": "Generated by Ninja with Clang base debug preset.",
"generator": "Ninja",
"inherits": [
"clang-deb"
]
},
{
"name": "nclang-rel",
"displayName": "Ninja Clang Release",
"description": "Generated by Ninja with Clang base release preset.",
"generator": "Ninja",
"inherits": [
"clang-rel"
]
}
]
}