mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-13 21:30:09 +00:00
7 lines
179 B
Bash
7 lines
179 B
Bash
|
#!/bin/sh
|
||
|
rm CMakeCache.txt
|
||
|
mkdir build_cmake
|
||
|
cd build_cmake
|
||
|
cmake -DBUILD_PYBULLET=ON -DBUILD_PYBULLET_NUMPY=ON -DUSE_DOUBLE_PRECISION=ON -DCMAKE_BUILD_TYPE=Release ..
|
||
|
make -j12
|