-
Notifications
You must be signed in to change notification settings - Fork 13
/
CMakeUserPresets.json.example
48 lines (48 loc) · 1.36 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
{
"version": 6,
"configurePresets": [
{
"name": "clion",
"hidden": true,
"cacheVariables": {
"RD_BUILD_PORTABLE": "ON",
"RD_GIT_NO_HASH": "OFF"
},
"vendor": {
"jetbrains.com/clion": {
"toolchain": "Linux x64 native"
}
}
},
{
"name": "clion-linux-dev",
"inherits": ["local-linux-dev", "clion"],
"displayName": "Linux (Clion|Dev)",
"description": "Configuration for Clion Dev builds using Linux toolchain",
"binaryDir": "${sourceDir}/build-Linux-64-dev"
},
{
"name": "clion-linux-release",
"inherits": ["local-linux-release", "clion"],
"displayName": "Linux (Clion|Release)",
"description": "Configuration for Clion Release builds using Linux toolchain",
"binaryDir": "${sourceDir}/build-Linux-64-release"
}
],
"buildPresets": [
{
"name": "clion-linux-dev",
"configurePreset": "clion-linux-dev",
"displayName": "Linux (CI|Dev)",
"description": "Cmake build configuration for Clion Dev builds using Linux toolchain",
"jobs": 14
},
{
"name": "clion-linux-release",
"configurePreset": "clion-linux-release",
"displayName": "Linux (CI|Release)",
"description": "Cmake build configuration for Clion Release builds using Linux toolchain",
"jobs": 14
}
]
}