Last active
July 29, 2019 22:10
-
-
Save tykurtz/d6af19619cdb4a1b7e03180d0c582c65 to your computer and use it in GitHub Desktop.
Catkin profile configuration setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir ~/catkin_ws | |
cd ~/catkin_ws | |
catkin init | |
mkdir src | |
catkin config --profile release -x _release --extend /opt/ros/melodic --cmake-args -DCMAKE_BUILD_TYPE=Release | |
catkin config --profile debug -x _debug --extend /opt/ros/melodic --cmake-args -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=1 | |
catkin profile set debug |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment