-
Notifications
You must be signed in to change notification settings - Fork 1
/
pymake.json
32 lines (32 loc) · 1017 Bytes
/
pymake.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
{
"header_remappings": {
"opencv2/opencv.hpp": "opencv",
"assimp/*": "assimp",
"GLFW/glfw3.h": "glfw",
"GL/glew.h": "opengl",
"libserialport.h": "serialport",
"crossguid/guid.hpp": "crossguid",
"mqtt/*": "paho-mqttpp3",
"yaml-cpp/yaml.h": "yaml-cpp",
"CL/cl.hpp": "opencl",
"CL/cl2.hpp": "opencl",
"CL/cl.h": "opencl",
"third_party/backward/backward.hpp": "backward",
"rosbag/bag.h": "rosbag"
},
"library_mappings": {
"assimp": "${ASSIMP_LIBRARIES}",
"opencv": "${OpenCV_LIBS}",
"glfw": "${GLFW_LIBRARIES}",
"glew": "${GLEW_LIBRARIES}",
"opengl": "${OPENGL_LIBRARIES}",
"opencl": "${OpenCL_LIBRARY}",
"pthread": "pthread",
"yaml-cpp": "yaml-cpp",
"serialport": "serialport",
"crossguid": "crossguid",
"paho-mqttpp3": "paho-mqttpp3",
"backward": "backward",
"rosbag": "${rosbag_LIBRARIES}"
}
}