mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-12 21:00:11 +00:00
bd30ba30ce
Change SHARED_MEMORY_MAGIC_NUMBER to make sure server/client are using the same version (shared memory) add --realtimesimulation to physics server (GUI, VR) remove --G Xcode from build_cmake_pybullet_double.sh
11 lines
238 B
Bash
Executable File
11 lines
238 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 ..
|
|
make -j12
|
|
cd examples
|
|
cd pybullet
|
|
ln -s pybullet.dylib pybullet.so
|
|
|