forked from ami-iit/bipedal-locomotion-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
32 lines (27 loc) · 1.63 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
# Copyright (C) 2020 Istituto Italiano di Tecnologia (IIT). All rights reserved.
# This software may be modified and distributed under the terms of the
# BSD-3-Clause license.
# set target name
if(FRAMEWORK_COMPILE_YarpUtilities)
add_bipedal_locomotion_library(
NAME YarpUtilities
SOURCES src/Helper.cpp src/RosPublisher.cpp
PUBLIC_HEADERS include/BipedalLocomotion/YarpUtilities/Helper.h include/BipedalLocomotion/YarpUtilities/Helper.tpp include/BipedalLocomotion/YarpUtilities/RosPublisher.h
PUBLIC_LINK_LIBRARIES ${YARP_LIBRARIES} ${iDynTree_LIBRARIES} BipedalLocomotion::GenericContainer BipedalLocomotion::ParametersHandler BipedalLocomotion::TextLogging
SUBDIRECTORIES tests)
add_bipedal_locomotion_yarp_thrift(
NAME VectorsCollectionMsg
THRIFT thrifts/BipedalLocomotion/YarpUtilities/VectorsCollection.thrift
INSTALLATION_FOLDER YarpUtilities)
add_bipedal_locomotion_library(
NAME VectorsCollection
SOURCES src/VectorsCollectionServer.cpp src/VectorsCollectionClient.cpp
PUBLIC_HEADERS include/BipedalLocomotion/YarpUtilities/VectorsCollectionServer.h include/BipedalLocomotion/YarpUtilities/VectorsCollectionClient.h
PUBLIC_LINK_LIBRARIES ${YARP_LIBRARIES}
${iDynTree_LIBRARIES}
BipedalLocomotion::VectorsCollectionMsg
BipedalLocomotion::GenericContainer
BipedalLocomotion::ParametersHandler
BipedalLocomotion::TextLogging
INSTALLATION_FOLDER YarpUtilities)
endif()