forked from ivipsourcecode/DS-SLAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDS_SLAM_BUILD.sh
52 lines (33 loc) · 822 Bytes
/
DS_SLAM_BUILD.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
echo "Configuring and building Thirdparty/DBoW2 ..."
cd Thirdparty/DBoW2
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j12
cd ../../g2o
echo "Configuring and building Thirdparty/g2o ..."
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j12
cd ../../../
echo "Configuring and building libsegmentation.so ..."
cd Examples/ROS/ORB_SLAM2_PointMap_SegNetM/libsegmentation
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j12
cd ../../../../../
echo "Configuring and building libORB_SLAM2_PointMap_SegNetM.so ..."
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j12
cd ..
echo "Configuring and building Executable TUM ..."
cd Examples/ROS/ORB_SLAM2_PointMap_SegNetM
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j12
cd ../../../../