summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorRay <[email protected]>2020-02-06 18:07:25 +0100
committerRay <[email protected]>2020-02-06 18:07:25 +0100
commit97054e4e0f2293e1984c923d45fab1d576370549 (patch)
treea67e41734ca59ba47facaaa1e49d499a77ae1e6b /examples
parent86bdf608876ad2766ef58b597bdabd800ce8f053 (diff)
downloadraylib-97054e4e0f2293e1984c923d45fab1d576370549.tar.gz
raylib-97054e4e0f2293e1984c923d45fab1d576370549.zip
Review ALL games to raylib 3.0
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 536922d0..9be9dd56 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -205,11 +205,6 @@ endif
# Additional flags for compiler (if desired)
#CFLAGS += -Wextra -Wmissing-prototypes -Wstrict-prototypes
ifeq ($(PLATFORM),PLATFORM_DESKTOP)
- ifeq ($(PLATFORM_OS),WINDOWS)
- # resource file contains windows executable icon and properties
- # -Wl,--subsystem,windows hides the console window
- CFLAGS += $(RAYLIB_PATH)/src/raylib.rc.data -Wl,--subsystem,windows
- endif
ifeq ($(PLATFORM_OS),LINUX)
ifeq ($(RAYLIB_LIBTYPE),STATIC)
CFLAGS += -D_DEFAULT_SOURCE
@@ -277,6 +272,14 @@ endif
LDFLAGS = -L. -L$(RAYLIB_RELEASE_PATH) -L$(RAYLIB_PATH)/src
ifeq ($(PLATFORM),PLATFORM_DESKTOP)
+ ifeq ($(PLATFORM_OS),WINDOWS)
+ # resource file contains windows executable icon and properties
+ LDFLAGS += $(RAYLIB_PATH)/src/raylib.rc.data
+ # -Wl,--subsystem,windows hides the console window
+ ifeq ($(BUILD_MODE), RELEASE)
+ LDFLAGS += -Wl,--subsystem,windows
+ endif
+ endif
ifeq ($(PLATFORM_OS),BSD)
# Consider -L$(RAYLIB_INSTALL_PATH)
LDFLAGS += -L. -Lsrc -L/usr/local/lib