|
4 | 4 | Developing a New Package
|
5 | 5 | ------------------------
|
6 | 6 |
|
| 7 | + |
7 | 8 | .. _development_guide_new_pkg_architecture:
|
8 | 9 |
|
9 | 10 | Architecture of a New Package
|
@@ -420,20 +421,135 @@ In order to compile this tests some lines must be added into a **NEW** ``CMakeLi
|
420 | 421 | endforeach()
|
421 | 422 | endif()
|
422 | 423 |
|
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: |
424 | 425 |
|
425 | 426 | .. code-block:: cmake
|
426 | 427 |
|
| 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 | +
|
427 | 526 | # Build tests if testing is enabled
|
428 | 527 | 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) |
431 | 537 | endif()
|
432 | 538 |
|
| 539 | + # Create the ament package |
| 540 | + ament_package() |
| 541 | +
|
433 | 542 |
|
434 | 543 | To run these tests:
|
435 | 544 |
|
436 | 545 | .. code-block:: bash
|
437 | 546 |
|
438 | 547 | colcon test
|
439 | 548 |
|
| 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