forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drake.cps
62 lines (62 loc) · 1.72 KB
/
drake.cps
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
{
"Meta-Comment": "Common Package Specification for Drake",
"Meta-Schema": "https://mwoehlke.github.io/cps/",
"X-Purpose": "Used to generate drake-config.cmake via cps2cmake",
"X-See-Also": "https://github.com/mwoehlke/pycps",
"Cps-Version": "0.8.0",
"Name": "drake",
"Website": "http://drake.mit.edu/",
"Requires": {
"Eigen3": {
"Version": "3.3.3",
"Hints": ["@prefix@/lib/cmake/eigen3"],
"X-CMake-Find-Args": ["CONFIG"]
},
"lcm": {
"Version": "1.3.95",
"Hints": ["@prefix@/lib/cmake/lcm"],
"X-CMake-Find-Args": ["CONFIG"]
},
"bot2-core-lcmtypes": {
"Hints": ["@prefix@/lib/cmake/bot2-core-lcmtypes"],
"X-CMake-Find-Args": ["CONFIG"]
},
"robotlocomotion-lcmtypes": {
"Hints": ["@prefix@/lib/cmake/robotlocomotion-lcmtypes"],
"X-CMake-Find-Args": ["CONFIG"]
},
"spdlog": {
"Version": "1.0.0",
"Hints": ["@prefix@/lib/cmake/spdlog"],
"X-CMake-Find-Args": ["CONFIG"]
}
},
"Components": {
"drake": {
"Type": "dylib",
"Location": "@prefix@/lib/libdrake.so",
"Includes": [
"@prefix@/include"
],
"Compile-Features": ["c++14"],
"Requires": [
":drake-lcmtypes-cpp",
"Eigen3:Eigen",
"lcm:lcm",
"bot2-core-lcmtypes:lcmtypes_bot2-core-cpp",
"robotlocomotion-lcmtypes:robotlocomotion-lcmtypes-cpp",
"spdlog:spdlog"
]
},
"drake-lcmtypes-cpp": {
"Type": "interface",
"Includes": ["@prefix@/include/drake/lcmtypes"],
"Requires": ["lcm:lcm-coretypes"]
},
"drake-lcmtypes-java": {
"Type": "jar",
"Location": "@prefix@/share/java/lcmtypes_drake.jar",
"Requires": ["lcm:lcm-java"]
}
}
}