Skip to content

Commit 8826887

Browse files
authored
Merge pull request #66 from fjanguita/CMakeLists_example
CMakeLists example and link to node template added
2 parents 38b9a8f + 858a2ff commit 8826887

File tree

1 file changed

+119
-3
lines changed

1 file changed

+119
-3
lines changed

docs/_09_development/_develop_guide/_develop_guide/_develop_new_pkg.rst

+119-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Developing a New Package
55
------------------------
66

7+
78
.. _development_guide_new_pkg_architecture:
89

910
Architecture of a New Package
@@ -420,20 +421,135 @@ In order to compile this tests some lines must be added into a **NEW** ``CMakeLi
420421
endforeach()
421422
endif()
422423
423-
In order to link this ``./tests/CMakeLists.txt`` file into the ``CMakeLists.txt`` file of the package, the following line must be added:
424+
In order to link and run your functional tests alongside with the code style ones, your package's CMakeLists.txt should follow the next structure:
424425

425426
.. code-block:: cmake
426427
428+
# Set the minimum required CMake version
429+
cmake_minimum_required(VERSION 3.5)
430+
431+
# Set the project name
432+
set(PROJECT_NAME as2_node_template)
433+
project(${PROJECT_NAME})
434+
435+
# Default to C++17 if not set
436+
if(NOT CMAKE_CXX_STANDARD)
437+
set(CMAKE_CXX_STANDARD 17)
438+
endif()
439+
440+
# Set Release as default build type if not set
441+
if(NOT CMAKE_BUILD_TYPE)
442+
set(CMAKE_BUILD_TYPE Release)
443+
endif()
444+
445+
# find dependencies
446+
set(PROJECT_DEPENDENCIES
447+
ament_cmake
448+
rclcpp
449+
as2_core
450+
as2_msgs
451+
std_msgs
452+
)
453+
454+
foreach(DEPENDENCY ${PROJECT_DEPENDENCIES})
455+
find_package(${DEPENDENCY} REQUIRED)
456+
endforeach()
457+
458+
# Include necessary directories
459+
include_directories(
460+
include
461+
include/${PROJECT_NAME}
462+
)
463+
464+
# Set source files
465+
set(SOURCE_CPP_FILES
466+
src/${PROJECT_NAME}_node.cpp
467+
src/${PROJECT_NAME}.cpp
468+
)
469+
470+
# Create the node executable
471+
add_executable(${PROJECT_NAME}_node ${SOURCE_CPP_FILES})
472+
ament_target_dependencies(${PROJECT_NAME}_node ${PROJECT_DEPENDENCIES})
473+
474+
# Create the dynamic library
475+
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
476+
add_library(${PROJECT_NAME} SHARED ${SOURCE_CPP_FILES})
477+
ament_target_dependencies(${PROJECT_NAME} ${PROJECT_DEPENDENCIES})
478+
479+
# Set the public include directories for the library
480+
target_include_directories(${PROJECT_NAME} PUBLIC
481+
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
482+
$<INSTALL_INTERFACE:include>)
483+
484+
# Install the headers
485+
install(
486+
DIRECTORY include/
487+
DESTINATION include
488+
)
489+
490+
# Install the node executable
491+
install(TARGETS
492+
${PROJECT_NAME}_node
493+
DESTINATION lib/${PROJECT_NAME}
494+
)
495+
496+
# Install the shared library
497+
install(
498+
TARGETS ${PROJECT_NAME}
499+
EXPORT export_${PROJECT_NAME}
500+
ARCHIVE DESTINATION lib
501+
LIBRARY DESTINATION lib
502+
RUNTIME DESTINATION bin
503+
)
504+
505+
# Export the libraries
506+
ament_export_libraries(${PROJECT_NAME})
507+
508+
# Export the targets
509+
ament_export_targets(export_${PROJECT_NAME})
510+
511+
# Export the include directories
512+
ament_export_include_directories(include)
513+
514+
# Install the launch directory
515+
install(DIRECTORY
516+
launch
517+
DESTINATION share/${PROJECT_NAME}
518+
)
519+
520+
# Install the config directory
521+
install(DIRECTORY
522+
config
523+
DESTINATION share/${PROJECT_NAME}
524+
)
525+
427526
# Build tests if testing is enabled
428527
if(BUILD_TESTING)
429-
# all other tests
430-
add_subdirectory(tests)
528+
find_package(ament_lint_auto REQUIRED)
529+
file(GLOB_RECURSE EXCLUDE_FILES
530+
build/*
531+
install/*
532+
)
533+
set(AMENT_LINT_AUTO_FILE_EXCLUDE ${EXCLUDE_FILES})
534+
ament_lint_auto_find_test_dependencies()
535+
536+
add_subdirectory(tests)
431537
endif()
432538
539+
# Create the ament package
540+
ament_package()
541+
433542
434543
To run these tests:
435544

436545
.. code-block:: bash
437546
438547
colcon test
439548
549+
550+
551+
------------------------------
552+
Node Template for New Packages
553+
------------------------------
554+
555+
An example node with the proper structure and all the templates can be found `here <https://github.com/aerostack2/as2_node_template>`_.

0 commit comments

Comments
 (0)