Skip to content

Commit 38433c0

Browse files
author
Aaron Roller
authored
Merge pull request #6 from AutoModality/AM-332/launch-files
Update package
2 parents 0b70ba4 + 7f45691 commit 38433c0

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

CMakeLists.txt

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -279,11 +279,16 @@ add_subdirectory(src)
279279
# )
280280

281281
## Mark cpp header files for installation
282-
install(DIRECTORY include/${PROJECT_NAME}/
283-
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
284-
FILES_MATCHING PATTERN "*.h*"
285-
PATTERN ".svn" EXCLUDE
286-
)
282+
install(DIRECTORY include/${PROJECT_NAME}/
283+
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
284+
FILES_MATCHING PATTERN "*.h*"
285+
PATTERN ".svn" EXCLUDE
286+
)
287+
288+
## Install launch files into share directory
289+
install(DIRECTORY launch
290+
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
291+
)
287292

288293
## Mark other files for installation (e.g. launch and bag files, etc.)
289294
# install(FILES

configure

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ cp -r include catkin_ws/src/${PACKAGE}
1010
cp -r test catkin_ws/src/${PACKAGE}
1111
cp -r msg catkin_ws/src/${PACKAGE}
1212
cp -r srv catkin_ws/src/${PACKAGE}
13+
cp -r launch catkin_ws/src/${PACKAGE}
1314
# Required for LibUSBConfig.cmake
1415
cp -r cmake-modules catkin_ws/src/${PACKAGE}
1516
cp package.xml catkin_ws/src/${PACKAGE}

0 commit comments

Comments
 (0)