Skip to content
Snippets Groups Projects
CMakeLists.txt 1.01 KiB
Newer Older
Andrew Glusiec's avatar
Andrew Glusiec committed
cmake_minimum_required(VERSION 2.8.3)
project(ur_msgs)

## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
## is used, also find other catkin packages
find_package(catkin REQUIRED COMPONENTS message_generation std_msgs)
Andrew Glusiec's avatar
Andrew Glusiec committed


## Generate messages in the 'msg' folder
ipa-fxm's avatar
ipa-fxm committed
add_message_files(
Andrew Glusiec's avatar
Andrew Glusiec committed
   FILES
   Analog.msg
   Digital.msg
   IOStates.msg
   RobotStateRTMsg.msg
   MasterboardDataMsg.msg
ipa-fxm's avatar
ipa-fxm committed
)
Andrew Glusiec's avatar
Andrew Glusiec committed

## Generate services in the 'srv' folder
ipa-fxm's avatar
ipa-fxm committed
add_service_files(
Andrew Glusiec's avatar
Andrew Glusiec committed
   FILES
Andrew Glusiec's avatar
Andrew Glusiec committed
   SetIO.srv
ipa-fxm's avatar
ipa-fxm committed
)
Andrew Glusiec's avatar
Andrew Glusiec committed


## Generate added messages and services with any dependencies listed here
ipa-fxm's avatar
ipa-fxm committed
generate_messages(
   DEPENDENCIES
   std_msgs
)
Andrew Glusiec's avatar
Andrew Glusiec committed

###################################
## catkin specific configuration ##
###################################
catkin_package(
#  INCLUDE_DIRS include
#  LIBRARIES ur_msgs
ipa-fxm's avatar
ipa-fxm committed
   CATKIN_DEPENDS message_runtime std_msgs
Andrew Glusiec's avatar
Andrew Glusiec committed
#  DEPENDS system_lib
)

###########
## Build ##
###########

#############
## Install ##
#############

#############
## Testing ##
#############