-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathCMakeLists.txt
46 lines (37 loc) · 1.27 KB
/
CMakeLists.txt
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
add_subdirectory(camera)
add_subdirectory(clock)
add_subdirectory(controlboard)
# Disable externalwrench plugin if Gazebo version is < 8.0
if (NOT GAZEBO_VERSION VERSION_LESS 8.0)
add_subdirectory(externalwrench)
endif()
add_subdirectory(fakecontrolboard)
add_subdirectory(forcetorque)
add_subdirectory(imu)
add_subdirectory(inertialmtb)
add_subdirectory(inertialmtbPart)
# This plugin will be removed soon ( https://github.com/robotology/gazebo-yarp-plugins/issues/213 )
# for the time being do not update it for compliance with Gazebo 9
if (GAZEBO_VERSION VERSION_LESS 9.0)
add_subdirectory(jointsensors)
endif()
add_subdirectory(showmodelcom)
add_subdirectory(multicamera)
add_subdirectory(maissensor)
if(GAZEBO_YARP_PLUGINS_HAS_OPENCV)
add_subdirectory(videotexture)
else()
message(STATUS "GAZEBO_YARP_PLUGINS_HAS_OPENCV CMake option set to off, disabling videotexture plugin.")
endif()
add_subdirectory(worldinterface)
add_subdirectory(linkattacher)
add_subdirectory(lasersensor)
add_subdirectory(doublelaser)
add_subdirectory(depthCamera)
add_subdirectory(contactloadcellarray)
add_subdirectory(modelposepublisher)
add_subdirectory(basestate)
add_subdirectory(configurationoverride)
if(GAZEBO_YARP_PLUGINS_HAS_YARP_ROBOTINTERFACE)
add_subdirectory(robotinterface)
endif()