-
Notifications
You must be signed in to change notification settings - Fork 31
/
CMakePresets.json
82 lines (82 loc) · 2.12 KB
/
CMakePresets.json
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
{
"version": 6,
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "build.${presetName}"
},
{
"name": "rtkernel",
"inherits" : "base",
"hidden": true,
"toolchainFile": "$env{RTK}/cmake/toolchain/rt-kernel.cmake",
"description": "Base target for rtkernel build. You will need to set BSP and RTK environmental variables in a child preset.",
"environment": {
"BSP": "",
"RTK": ""
},
"cacheVariables": {
"IOLINK_BUILD_RTKERNEL": "ON",
"CMAKE_MODULE_PATH": "$env{RTK}/cmake",
"CMAKE_PREFIX_PATH": "$env{RTK}/cmake/xmc4/cortex-m4f",
"BUILD_RTK_BSP": true
}
},
{
"name": "linux",
"inherits" : "base",
"cacheVariables": {
"BUILD_TESTING": true
}
},
{
"name" : "linux-usb",
"cacheVariables" : {
"IOLINKMASTER_USB_MODE_ENABLE": true
},
"inherits" : "linux"
},
{
"name": "docs",
"inherits" : "base",
"cacheVariables": {
"IOLINKMASTER_BUILD_DOCS": true
}
}
],
"buildPresets": [
{
"name": "linux",
"configurePreset": "linux"
},
{
"name": "docs",
"targets": "sphinx-html",
"configurePreset": "docs"
}
],
"packagePresets": [
{
"name": "linux",
"configurePreset": "linux",
"generators": [
"ZIP"
]
}
],
"testPresets": [
{
"name": "linux",
"configurePreset": "linux",
"output": {
"outputOnFailure": true
},
"execution": {
"noTestsAction": "error",
"stopOnFailure": true
}
}
]
}