How to force CMake to run again?
Closed this issue · 2 comments
teichman commented
I'm doing some work with catkin_simple and new messages. I noticed this known limitation mentioned here:
If new .msg or .srv files are added, they will not be detected until you force CMake to run again
Is there a better way to do this than deleting your build and devel directories?
Edited to add: I'm using catkin_tools, not catkin_make.
Thanks.
wjwwood commented
You can just make sure cmake runs again, all of the catkin tools have the --force-cmake
option.
teichman commented
Perfect, thanks!