-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCMakePresets.json
More file actions
73 lines (73 loc) · 2.31 KB
/
Copy pathCMakePresets.json
File metadata and controls
73 lines (73 loc) · 2.31 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
{
"version": 10,
"$schema": "https://cmake.org/cmake/help/latest/_downloads/3e2d73bff478d88a7de0de736ba5e361/schema.json",
"configurePresets": [
{
"name": "relwithdebinfo",
"displayName": "RelWithDebInfo",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/../workspace/build/superbuild",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"SOURCE_DESTINATION": "${sourceDir}/../workspace/devel",
"BUILD_DESTINATION": "${sourceDir}/../workspace/build/projects",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/../workspace/install"
}
},
{
"name": "relwithdebinfo-notests",
"displayName": "RelWithDebInfo (no tests)",
"inherits": [
"relwithdebinfo"
],
"cacheVariables": {
"BUILD_TESTING": "OFF"
}
},
{
"name": "relwithdebinfo-noble",
"displayName": "RelWithDebInfo (noble, ROS, no Python)",
"inherits": [
"relwithdebinfo"
],
"cacheVariables": {
"PYTHON_BINDING": "OFF",
"WITH_ROS_SUPPORT": "ON"
},
"condition": {
"type": "equals",
"lhs": "$env{UBUNTU_VERSION}",
"rhs": "noble"
}
}
],
"buildPresets": [
{
"name": "relwithdebinfo",
"displayName": "RelWithDebInfo",
"configurePreset": "relwithdebinfo",
"configuration": "RelWithDebInfo",
"targets": [
"install"
]
},
{
"name": "relwithdebinfo-notests",
"displayName": "RelWithDebInfo (no tests)",
"configurePreset": "relwithdebinfo-notests",
"configuration": "RelWithDebInfo",
"targets": [
"install"
]
},
{
"name": "relwithdebinfo-noble",
"displayName": "RelWithDebInfo (ubuntu noble)",
"configurePreset": "relwithdebinfo-noble",
"configuration": "RelWithDebInfo",
"targets": [
"install"
]
}
]
}