Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion ament_cmake_auto/cmake/ament_auto_package.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
# :param INSTALL_TO_SHARE: a list of directories to be installed to the
# package's share directory
# :type INSTALL_TO_SHARE: list of strings
# :param USE_SCOPED_HEADER_INSTALL_DIR: deprecated after Jazzy
# :type USE_SCOPED_HEADER_INSTALL_DIR: option
# :param ARGN: any other arguments are passed through to ament_package()
# :type ARGN: list of strings
#
Expand All @@ -43,7 +45,11 @@
#

macro(ament_auto_package)
cmake_parse_arguments(_ARG_AMENT_AUTO_PACKAGE "INSTALL_TO_PATH" "" "INSTALL_TO_SHARE" ${ARGN})
cmake_parse_arguments(_ARG_AMENT_AUTO_PACKAGE
"INSTALL_TO_PATH;USE_SCOPED_HEADER_INSTALL_DIR"
""
"INSTALL_TO_SHARE"
${ARGN})
# passing all unparsed arguments to ament_package()

# export all found build dependencies which are also run dependencies
Expand Down