1echo
2echo building...
3
4mkdir -p build
5cd build
6
7# you can specify a custom install location and the python version
8cmake ../src -DCMAKE_INSTALL_PREFIX=~/open3d_install #-DPYTHON_EXECUTABLE=/usr/bin/python3.5
9
10make -j
11
12# this will copy the libs and headers to ~/open3d_install/lib & ~/open3d_install/include
13# make install
14
15echo
16