diff options
| author | Ray <[email protected]> | 2017-03-07 08:45:53 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-03-07 08:45:53 +0100 |
| commit | 6e683d57e8209fc524c3cc25e75eff3fb33a1fbc (patch) | |
| tree | cf4ab9db7dc77f30bba3f3f2280c774fce4bdd7e /examples/physics_movement.c | |
| parent | cb463a37ef1bc8c0cedd823dfeae0d53cfc57710 (diff) | |
| parent | c964559bc966292a7d70f00559ea80c224aab96d (diff) | |
| download | raylib-6e683d57e8209fc524c3cc25e75eff3fb33a1fbc.tar.gz raylib-6e683d57e8209fc524c3cc25e75eff3fb33a1fbc.zip | |
Merge pull request #240 from victorfisac/develop
Updated Physac and examples with last changes
Diffstat (limited to 'examples/physics_movement.c')
| -rw-r--r-- | examples/physics_movement.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/physics_movement.c b/examples/physics_movement.c index ee97845f..3345404d 100644 --- a/examples/physics_movement.c +++ b/examples/physics_movement.c @@ -3,9 +3,12 @@ * Physac - Physics movement * * NOTE: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations. -* The file pthreadGC2.dll is required to run the program; you can find it in 'src\external' * -* Copyright (c) 2016 Victor Fisac +* Use the following code to compile (-static -lpthread): +* gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib_icon -static -lraylib -lpthread +* -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition +* +* Copyright (c) 2017 Victor Fisac * ********************************************************************************************/ |
