forked from robotology/yarp-devices-forcetorque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
23 lines (19 loc) · 806 Bytes
/
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
# Copyright: (C) 2016 iCub Facility - Fondazione Istituto Italiano di Tecnologia
# Authors: Silvio Traversaro <silvio.traversaro@iit.it>, Francisco Andrade <franciscojavier.andradechavez@iit.it>
# CopyPolicy: Released under the terms of the GNU LGPL v2.0+
cmake_minimum_required(VERSION 2.8.9)
project(forcetorque-yarp-devices)
# Add local CMake files
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
# Find YARP and include the CMake code to compile plugins
find_package(YARP REQUIRED)
list(APPEND CMAKE_MODULE_PATH ${YARP_MODULE_PATH})
include(YarpPlugin)
include(YarpInstallationHelpers)
set(YARP_FORCE_DYNAMIC_PLUGINS TRUE)
add_subdirectory(amti)
add_subdirectory(optoforce)
add_subdirectory(ATI_Ethernet)
add_subdirectory(AME)
add_subdirectory(ftShoe)
add_subdirectory(ftShoeUdpWrapper)