forked from johannes-graeter/limo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_repos.sh
14 lines (12 loc) · 1.03 KB
/
install_repos.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# make catkin profile
catkin config --profile limo_release -x _limo_release --cmake-args -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_CXX_FLAGS=-Wall -Wextra -Wno-unused-parameter -Werror=address -Werror=array-bounds=1 -Werror=bool-compare -Werror=comment -Werror=enum-compare -Werror=format -Werror=init-self -Werror=logical-not-parentheses -Werror=maybe-uninitialized -Werror=memset-transposed-args -Werror=nonnull -Werror=nonnull-compare -Werror=openmp-simd -Werror=parentheses -Werror=return-type -Werror=sequence-point -Werror=sizeof-pointer-memaccess -Werror=switch -Werror=tautological-compare -Werror=trigraphs -Werror=uninitialized -Werror=volatile-register-var
# clone stuff
cd ..
git clone https://github.com/KIT-MRT/feature_tracking.git
git clone https://github.com/johannes-graeter/mono_lidar_depth.git
git clone https://github.com/KIT-MRT/viso2.git
git clone https://github.com/KIT-MRT/mrt_cmake_modules.git
git clone https://github.com/KIT-MRT/rosinterface_handler.git
# build it with profile
catkin build --profile limo_release