mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-13 13:20:07 +00:00
11 lines
247 B
Bash
Executable File
11 lines
247 B
Bash
Executable File
#!/bin/sh
|
|
rm CMakeCache.txt
|
|
mkdir build_cmake
|
|
cd build_cmake
|
|
cmake -DBUILD_PYBULLET=ON -DBUILD_PYBULLET_NUMPY=OFF -DUSE_DOUBLE_PRECISION=ON -DCMAKE_BUILD_TYPE=Release -G Xcode ..
|
|
make -j12
|
|
cd examples
|
|
cd pybullet
|
|
ln -s pybullet.dylib pybullet.so
|
|
|