-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCMakePresets.json
More file actions
75 lines (75 loc) · 2.57 KB
/
Copy pathCMakePresets.json
File metadata and controls
75 lines (75 loc) · 2.57 KB
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
{
"version": 3,
"cmakeMinimumRequired": { "major": 3, "minor": 21, "patch": 0 },
"configurePresets": [
{
"name": "config-template"
, "binaryDir": "${sourceDir}/build/${presetName}"
, "hidden": true
},
{
"name": "linux64-template"
, "displayName": "Release Config Linux"
, "inherits": "config-template"
, "hidden": true
, "description": "Makefiles project for Release configuration targeting the host OS"
, "generator": "Unix Makefiles"
, "cacheVariables": {
"CMAKE_BUILD_TYPE": { "type": "STRING", "value": "Release" }
}
, "condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Linux" }
},
{
"name": "linux64-debug-template"
, "inherits": "linux64-template"
, "hidden": true
, "displayName": "Debug Config Linux"
, "description": "Makefiles project for Release configuration targeting the host OS"
, "cacheVariables": {
"CMAKE_BUILD_TYPE": { "type": "STRING", "value": "Debug" }
}
},
{
"name": "arm64-template"
, "inherits": "linux64-template"
, "hidden": true
, "displayName": "Release Config Linux ARM64"
, "description": "ARM64 Cross-compile Makefiles project for Release configuration"
, "toolchainFile": "cmake/aarch64-linux-gnu.toolchain.cmake"
},
{
"name": "arm64-debug-template"
, "inherits": ["linux64-debug-template", "arm64-template"]
, "hidden": true
, "displayName": "Debug Config Linux ARM64"
, "description": "ARM64 Cross-compile Makefiles project for Debug configuration"
},
{
"name": "macos-template"
, "displayName": "Release Config macOS"
, "inherits": "config-template"
, "hidden": true
, "generator": "Xcode"
, "environment": { "MACOSX_DEPLOYMENT_TARGET": "11.7" }
, "condition": { "lhs": "${hostSystemName}", "type": "equals", "rhs": "Darwin" }
},
{
"name": "win64-template"
, "displayName": "64 bit windows template"
, "description": "VS Project for 64 bit windows target"
, "inherits": "config-template"
, "hidden": true
, "generator": "Visual Studio 16 2019"
, "architecture": "x64"
, "condition": { "type": "equals", "lhs": "${hostSystemName}", "rhs": "Windows" }
},
{
"name": "win32-template"
, "inherits": "win64-template"
, "displayName": "32 bit windows template"
, "hidden": true
, "description": "VS Project for 32 bit windows target"
, "architecture": "Win32"
}
]
}