Error: ... is not a package or launch file name
Hi,
I'm using ROS groovy and have some packages in my workspace. When I use catkin_make and just want to build one of these packages, I put a CATKIN_IGNORE file into the packages I don't want to be build.
But when I now try to launch one of the packages which have a CATKIN_IGNORE file, roslaunch can't launch and shows "myPackage is not a package or launch file name".
Shouldn't it be possible to launch even if there is a catkin ignore file in the package?
Has anyone experience with catkin_make? Does anyone know how to build just one packet? Any idea how to do this without copying and deleting CATKIN_IGNORE files every time?
Thank you. This works fine.
Seems to work fine, if the workspace contains only catkin packages. If there are packages which need to be build with 'catkin_make_isolated' it doesn't work, so that I need to use CATKIN_IGNORE files. Has anyone an idea who to build without putting CATKIN_IGNORE files in the packages in such case?
By placing a CATKIN_IGNORE file into a package folder you will make this package disappear - not only from the build but also from runtime. You will neither be able to discover the package anymore nor run binaries/launch files from it.
@Dirk thanks, removing the ignore helped my ROS accepting a roslaunch for a rosbuild package in my ROS_PACKAGE_PATH, which had no problems since the last update. But, why has groovy put that file (and lots of folders like devel) in my rosbuild package in the first place without needing them?
Nevermind, If I understood the issue correct,
make eclipse-project
was faulty and responsible for those folders. related question