Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
templates
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tecnalia_robotics-public
templates
Merge requests
!6
Fix the roslaunch_add_file_check bug that produced the filename too long problem
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix the roslaunch_add_file_check bug that produced the filename too long problem
fix_roslaunch_macro
into
master
Overview
1
Commits
1
Pipelines
0
Changes
1
Merged
Jon Azpiazu
requested to merge
fix_roslaunch_macro
into
master
6 years ago
Overview
1
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
bc7531fe
1 commit,
6 years ago
1 file
+
13
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
scripts/roslaunch_test_generator.sh
+
13
−
3
Options
@@ -16,11 +16,21 @@ if(CATKIN_ENABLE_TESTING)
find_package(catkin REQUIRED COMPONENTS
roslaunch
)
roslaunch_add_file_check(
$(
find
.
-type
f
-name
"*.launch"
)
)
EOT
## The roslaunch_add_file_check macro supports as parameter either a folder or a single launchfile
## Here we call the macro for each of the launchfiles in the package
for
launchfile
in
$(
find
.
-type
f
-name
"*.launch"
)
;
do
cat
<<
EOT
>> CMakeLists.txt
roslaunch_add_file_check(
${
launchfile
}
)
EOT
done
## Close if(CATKIN_ENABLE_TESTING)
cat
<<
EOT
>> CMakeLists.txt
endif()
EOT
fi
fi
done
Loading