forked from bulletphysics/bullet3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move some easy-to-use build files for Mac OSX, Linux and Windows
in the root directory.
- Loading branch information
1 parent
2fc0358
commit 9bd88e5
Showing
6 changed files
with
22 additions
and
313 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
rm CMakeCache.txt | ||
mkdir build_cmake | ||
cd build_cmake | ||
cmake .. | ||
make -j12 | ||
examples/ExampleBrowser/App_ExampleBrowser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
cd build3 | ||
./premake4_linux64 gmake | ||
./premake4_osx gmake | ||
cd gmake | ||
make -j12 | ||
../../bin/App_BulletExampleBrowser_gmake_x64_release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
cd `dirname $0` | ||
cd build3 | ||
./premake4_osx xcode4 | ||
open xcode4/0_Bullet3Solution.xcworkspace |