Go2Py_SIM/locomotion/compile.sh

10 lines
262 B
Bash
Raw Normal View History

2024-03-12 08:55:41 +08:00
2024-02-16 07:43:43 +08:00
mkdir custom/build
cd custom/build
2024-03-12 08:55:41 +08:00
cmake ../.. -DCMAKE_BUILD_TYPE=Release -DINSTALL_HEADERS_ONLY=true
make install -j$(($(nproc) - 2))
cmake ../.. -DCMAKE_BUILD_TYPE=Release -DINSTALL_HEADERS_ONLY=false
make install -j$(($(nproc) - 2))
# make install
2024-02-16 07:43:43 +08:00
cd ../..