-
Notifications
You must be signed in to change notification settings - Fork 17
/
CMakeUserPresets.json.example
153 lines (153 loc) · 5.21 KB
/
CMakeUserPresets.json.example
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 10,
"patch": 0
},
"configurePresets": [
{
"name": "Debug-MSVC",
"inherits": "debug",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/debug-msvc",
"toolchainFile": "C:\\Users\\$env{USERNAME}\\Libraries\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake",
"cacheVariables": {
"LLVM_ROOT": "C:\\Users\\$env{USERNAME}\\Libraries\\llvm-project\\llvm\\install\\MSVC\\Debug",
"Clang_ROOT": "C:\\Users\\$env{USERNAME}\\Libraries\\llvm-project\\llvm\\install\\MSVC\\Debug",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"CMAKE_CXX_FLAGS": "/W4",
"CMAKE_C_FLAGS": "/W4"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [
"Windows"
],
"intelliSenseMode": "windows-msvc-x64"
}
}
},
{
"name": "DebWithOpt-MSVC",
"inherits": "Debug-MSVC",
"binaryDir": "${sourceDir}/build/debwithopt-msvc",
"cacheVariables": {
"LLVM_ROOT": "C:\\Users\\$env{USERNAME}\\Libraries\\llvm-project\\llvm\\install\\MSVC\\DebWithOpt",
"Clang_ROOT": "C:\\Users\\$env{USERNAME}\\Libraries\\llvm-project\\llvm\\install\\MSVC\\DebWithOpt"
}
},
{
"name": "Release-MSVC",
"inherits": "Debug-MSVC",
"binaryDir": "${sourceDir}/build/release-msvc",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"LLVM_ROOT": "C:\\Users\\$env{USERNAME}\\Libraries\\llvm-project\\llvm\\install\\MSVC\\Release",
"Clang_ROOT": "C:\\Users\\$env{USERNAME}\\Libraries\\llvm-project\\llvm\\install\\MSVC\\Release"
}
},
{
"name": "RelWithDebInfo-MSVC",
"inherits": "Debug-MSVC",
"binaryDir": "${sourceDir}/build/relwithdebinfo-msvc",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"LLVM_ROOT": "C:\\Users\\$env{USERNAME}\\Libraries\\llvm-project\\llvm\\install\\MSVC\\RelWithDebInfo",
"Clang_ROOT": "C:\\Users\\$env{USERNAME}\\Libraries\\llvm-project\\llvm\\install\\MSVC\\RelWithDebInfo"
}
},
{
"name": "DebWithOpt-ClangCL",
"inherits": "DebWithOpt-MSVC",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_C_COMPILER": "clang-cl.exe",
"CMAKE_CXX_COMPILER": "clang-cl.exe"
}
},
{
"name": "Debug-GCC",
"inherits": "debug",
"binaryDir": "${sourceDir}/build/debug-gcc",
"toolchainFile": "/home/$env{USER}/libraries/vcpkg/scripts/buildsystems/vcpkg.cmake",
"cacheVariables": {
"CMAKE_CXX_COMPILER": "/usr/bin/g++-13",
"CMAKE_C_COMPILER": "/usr/bin/gcc-13",
"LLVM_ROOT": "/home/$env{USER}/libraries/llvm-project/llvm/install/Linux/Release",
"Clang_ROOT": "/home/$env{USER}/libraries/llvm-project/llvm/install/Linux/Release",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"CMAKE_CXX_FLAGS": "-Wall -Wextra -Wpedantic -Werror",
"CMAKE_C_FLAGS": "-Wall -Wextra -Wpedantic -Werror"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [
"Linux"
],
"intelliSenseMode": "windows-msvc-x64"
},
"jetbrains.com/clion": {
"toolchain": "WSL GCC"
}
}
},
{
"name": "Debug-GCC-Asan",
"inherits": "Debug-GCC",
"binaryDir": "${sourceDir}/build/debug-gcc-asan",
"cacheVariables": {
"CMAKE_CXX_FLAGS": "-fsanitize=address -fno-omit-frame-pointer -g -O0 -fno-inline-functions"
}
},
{
"name": "DebWithOpt-GCC",
"inherits": "Debug-GCC",
"binaryDir": "${sourceDir}/build/debwithopt-gcc",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"LLVM_ROOT": "/home/$env{USER}/libraries/llvm-project/llvm/install/Linux/Release",
"Clang_ROOT": "/home/$env{USER}/libraries/llvm-project/llvm/install/Linux/Release"
}
},
{
"name": "Release-GCC",
"inherits": "Debug-GCC",
"binaryDir": "${sourceDir}/build/release-gcc",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"LLVM_ROOT": "/home/$env{USER}/libraries/llvm-project/llvm/install/Linux/Release",
"Clang_ROOT": "/home/$env{USER}/libraries/llvm-project/llvm/install/Linux/Release"
}
},
{
"name": "RelWithDebInfo-GCC",
"inherits": "Debug-GCC",
"binaryDir": "${sourceDir}/build/relwithdebinfo-gcc",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"LLVM_ROOT": "/home/$env{USER}/libraries/llvm-project/llvm/install/Linux/Release",
"Clang_ROOT": "/home/$env{USER}/libraries/llvm-project/llvm/install/Linux/Release"
}
},
{
"name": "Debug-Clang",
"inherits": "Debug-GCC",
"binaryDir": "${sourceDir}/build/debug-clang",
"cacheVariables": {
"CMAKE_CXX_COMPILER": "/usr/bin/clang++-16",
"CMAKE_C_COMPILER": "/usr/bin/clang-16"
},
"vendor": {
"jetbrains.com/clion": {
"toolchain": "WSL Clang"
}
}
}
]
}