summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorRay <[email protected]>2017-03-07 09:49:04 +0100
committerGitHub <[email protected]>2017-03-07 09:49:04 +0100
commit6d1519c1322c6c1718f67e362c87b92c35ce55fd (patch)
treecc88c13bb4096ed8bbf7279ffb494728bc753e2a /examples
parentcb29b1d2ac50e5438d883b7dba8403482a627b8c (diff)
parent6e683d57e8209fc524c3cc25e75eff3fb33a1fbc (diff)
downloadraylib-6d1519c1322c6c1718f67e362c87b92c35ce55fd.tar.gz
raylib-6d1519c1322c6c1718f67e362c87b92c35ce55fd.zip
Merge pull request #241 from raysan5/develop
Integrate develop branch
Diffstat (limited to 'examples')
-rw-r--r--examples/physics_demo.c7
-rw-r--r--examples/physics_friction.c7
-rw-r--r--examples/physics_movement.c7
-rw-r--r--examples/physics_restitution.c7
-rw-r--r--examples/physics_shatter.c7
5 files changed, 25 insertions, 10 deletions
diff --git a/examples/physics_demo.c b/examples/physics_demo.c
index de8d515e..b12ac708 100644
--- a/examples/physics_demo.c
+++ b/examples/physics_demo.c
@@ -3,9 +3,12 @@
* Physac - Physics demo
*
* 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
*
********************************************************************************************/
diff --git a/examples/physics_friction.c b/examples/physics_friction.c
index a4baad53..db1b5f4c 100644
--- a/examples/physics_friction.c
+++ b/examples/physics_friction.c
@@ -3,9 +3,12 @@
* Physac - Physics friction
*
* 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
*
********************************************************************************************/
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
*
********************************************************************************************/
diff --git a/examples/physics_restitution.c b/examples/physics_restitution.c
index 378f6f24..534d125e 100644
--- a/examples/physics_restitution.c
+++ b/examples/physics_restitution.c
@@ -3,9 +3,12 @@
* Physac - Physics restitution
*
* 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
*
********************************************************************************************/
diff --git a/examples/physics_shatter.c b/examples/physics_shatter.c
index 637a163e..fac90714 100644
--- a/examples/physics_shatter.c
+++ b/examples/physics_shatter.c
@@ -3,9 +3,12 @@
* Physac - Body shatter
*
* 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
*
********************************************************************************************/