Created
March 16, 2019 04:25
-
-
Save alecGraves/9873177ed406adbdd1f692a492396f87 to your computer and use it in GitHub Desktop.
windows profile for ros development
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
@echo off | |
:: My profile for Windows ROS development | |
:: set up aliases | |
DOSKEY cm=catkin_make -C %UserProfile%\Documents\catkin_ws | |
DOSKEY refresh=call %UserProfile%\Documents\catkin_ws\devel\setup.bat | |
:: source ROS setups | |
call C:\opt\ros\melodic\x64\setup.bat | |
call %UserProfile%\Documents\catkin_ws\devel\setup.bat | |
:: go to Documents folder | |
cd /d %UserProfile%\Documents |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment