mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-24 13:55:34 +00:00
8 lines
171 B
Bash
8 lines
171 B
Bash
|
|
#!/bin/sh
|
||
|
|
rm CMakeCache.txt
|
||
|
|
mkdir build_cmake
|
||
|
|
cd build_cmake
|
||
|
|
cmake -DBUILD_PYBULLET=OFF -DCMAKE_BUILD_TYPE=Release ..
|
||
|
|
make -j12
|
||
|
|
examples/ExampleBrowser/App_ExampleBrowser
|