-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeUserPresets.json.example
44 lines (44 loc) · 1.24 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
{
"version": 6,
"configurePresets": [
{
"name": "clion",
"hidden": true,
"vendor": {
"jetbrains.com/clion": {
"toolchain": "Docker Russian Doom DOS"
}
}
},
{
"name": "clion-watcom-dev",
"inherits": ["local-watcom-dev", "clion"],
"displayName": "Watcom (Clion|Dev)",
"description": "Watcom configuration for Clion Dev builds",
"binaryDir": "${sourceDir}/build-dev"
},
{
"name": "clion-watcom-release",
"inherits": ["local-watcom-release", "clion"],
"displayName": "Watcom (Clion|Release)",
"description": "Watcom configuration for Clion Release builds",
"binaryDir": "${sourceDir}/build-release"
}
],
"buildPresets": [
{
"name": "clion-watcom-dev",
"configurePreset": "clion-watcom-dev",
"displayName": "Watcom (CI|Dev)",
"description": "Cmake build configuration for Clion Dev builds using Watcom toolchain",
"jobs": 14
},
{
"name": "clion-watcom-release",
"configurePreset": "clion-watcom-release",
"displayName": "Watcom (CI|Release)",
"description": "Cmake build configuration for Clion Release builds using Watcom toolchain",
"jobs": 14
}
]
}