Skip to content
Snippets Groups Projects
Commit bc7531fe authored by Jon Azpiazu's avatar Jon Azpiazu
Browse files

Fix the roslaunch_add_file_check bug that produced the filename too long problem

parent 2f19e3b1
No related branches found
No related tags found
No related merge requests found
...@@ -16,11 +16,21 @@ if(CATKIN_ENABLE_TESTING) ...@@ -16,11 +16,21 @@ if(CATKIN_ENABLE_TESTING)
find_package(catkin REQUIRED COMPONENTS find_package(catkin REQUIRED COMPONENTS
roslaunch roslaunch
) )
roslaunch_add_file_check( EOT
$(find . -type f -name "*.launch")
) ## 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() endif()
EOT EOT
fi fi
fi fi
done done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment