-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCMakePresets.json
More file actions
34 lines (34 loc) · 992 Bytes
/
CMakePresets.json
File metadata and controls
34 lines (34 loc) · 992 Bytes
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
{
"version": 3,
"configurePresets": [
{
"name": "default",
"displayName": "Default Config",
"description": "Default build using Ninja generator",
"binaryDir": "$env{BUILD_DIR}",
"environment": {
"BUILD_DIR": "build/${presetName}"
}
},
{
"name": "x86-windows",
"displayName": "for windows",
"description": "windows build",
"inherits": "default",
"architecture": "Win32",
"cacheVariables": {
"CMAKE_C_COMPILER":"cl"
}
},
{
"name": "x64-windows",
"displayName": "for windows x64",
"description": "windows x64 build",
"inherits": "default",
"architecture": "x64",
"cacheVariables": {
"CMAKE_C_COMPILER":"cl"
}
}
]
}