Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #!/bin/bash
  2. catkin config -DCMAKE_EXPORT_COMPILE_COMMANDS=1
  3. catkin build
  4.  
  5. for file in $(find . -name "compile_commands.json");
  6. do
  7. rc -J $file
  8. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement