Skip to content
Open
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .github/workflows/ROS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,3 @@ jobs:
with:
package-name: motion_capture_tracking
target-ros2-distro: ${{ matrix.ros_distribution }}
skip-tests: true
34 changes: 24 additions & 10 deletions motion_capture_tracking/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,30 @@ if ((CMAKE_SYSTEM_NAME STREQUAL "Linux") AND (CMAKE_SYSTEM_PROCESSOR STREQUAL "x
)
endif()

# if(BUILD_TESTING)
# find_package(ament_lint_auto REQUIRED)
# # the following line skips the linter which checks for copyrights
# # uncomment the line when a copyright and license is not present in all source files
# #set(ament_cmake_copyright_FOUND TRUE)
# # the following line skips cpplint (only works in a git repo)
# # uncomment the line when this package is not in a git repo
# #set(ament_cmake_cpplint_FOUND TRUE)
# ament_lint_auto_find_test_dependencies()
# endif()
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)

# Exclude your deps directory from all linters
set(AMENT_LINT_AUTO_FILE_EXCLUDE
"${CMAKE_CURRENT_SOURCE_DIR}/deps/*"
)
# ament_lint_auto_file_exclude not supported for ament_cmake_lint
# Instead, we manually only run it on this file
set(AMENT_LINT_AUTO_EXCLUDE
ament_cmake_lint_cmake
)

# the following line skips the linter which checks for copyrights
# uncomment the line when a copyright and license is not present in all source files
set(ament_cmake_copyright_FOUND TRUE)
# the following line skips cpplint (only works in a git repo)
# uncomment the line when this package is not in a git repo
#set(ament_cmake_cpplint_FOUND TRUE)
ament_lint_auto_find_test_dependencies()

find_package(ament_cmake_lint_cmake REQUIRED)
ament_lint_cmake("${CMAKE_CURRENT_LIST_FILE}")
endif()

# Install launch files.
install(DIRECTORY
Expand Down
Empty file.
1 change: 1 addition & 0 deletions motion_capture_tracking/deps/CPPLINT.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
filter=-
1 change: 1 addition & 0 deletions motion_capture_tracking/launch/launch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os

from ament_index_python.packages import get_package_share_directory
from launch import LaunchDescription
from launch_ros.actions import Node
Expand Down
Loading