forked from ernestmc/rosjava_actionlib
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCMakeLists.txt
29 lines (22 loc) · 1.09 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
##############################################################################
# CMake
##############################################################################
cmake_minimum_required(VERSION 3.0.2)
project(rosjava_actionlib)
##############################################################################
# Catkin
##############################################################################
find_package(catkin REQUIRED rosjava_build_tools)
# Set the gradle targets you want catkin's make to run by default, e.g.
# catkin_rosjava_setup(installApp)
# Note that the catkin_create_rosjava_xxx scripts will usually automatically
# add tasks to this for you when you create subprojects.
#catkin_rosjava_setup(installApp publishMavenJavaPublicationToMavenRepository)
catkin_rosjava_setup(install publish)
catkin_package()
##############################################################################
# Installation
##############################################################################
# Install the launchfiles
install(DIRECTORY launch/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch)