Why CMakeLists's rosbuild_add_executable couldn't have a name 'test'?
My package couldn't generate executable file when CMakeLists has a line:
rosbuild_add_executable(test src/t.cpp)
My package can generate executable file when CMakeLists has a line:
rosbuild_add_executable(test2 src/t.cpp)
I found that only the name 'test',it failed to generate an executable file.
What happened? I use ROS diamondback.
Thank you~