summaryrefslogtreecommitdiffhomepage
path: root/games
diff options
context:
space:
mode:
authorRay <[email protected]>2018-11-19 15:18:11 +0100
committerRay <[email protected]>2018-11-19 15:18:11 +0100
commitac23af9bf0215614aed84efec2872d78203ca10a (patch)
tree426e2278e514b95242580d94ee4c0e114735db8b /games
parented269b8d9a96afb2af69a218eb1f2e7fe8fcc8a6 (diff)
downloadraylib-ac23af9bf0215614aed84efec2872d78203ca10a.tar.gz
raylib-ac23af9bf0215614aed84efec2872d78203ca10a.zip
Review resources naming
raylib resource data file for Windows platform (containing raylib icon and metadata for executable file) has been renamed to a more consistent name: raylib.rc.data Also required to work with tcc compiler.
Diffstat (limited to 'games')
-rw-r--r--games/Makefile2
-rw-r--r--games/drturtle/Makefile2
-rw-r--r--games/just_do/Makefile2
-rw-r--r--games/koala_seasons/Makefile2
-rw-r--r--games/light_my_ritual/Makefile2
-rw-r--r--games/skully_escape/Makefile2
-rw-r--r--games/transmission/Makefile2
-rw-r--r--games/wave_collector/Makefile2
8 files changed, 8 insertions, 8 deletions
diff --git a/games/Makefile b/games/Makefile
index ab41665b..5d60f15d 100644
--- a/games/Makefile
+++ b/games/Makefile
@@ -169,7 +169,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),WINDOWS)
# resources file contains windows exe icon
# -Wl,--subsystem,windows hides the console window
- CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows
+ CFLAGS += $(RAYLIB_PATH)/raylib.rc.data -Wl,--subsystem,windows
endif
ifeq ($(PLATFORM_OS),LINUX)
CFLAGS += -D_DEFAULT_SOURCE
diff --git a/games/drturtle/Makefile b/games/drturtle/Makefile
index 45a04ec4..8f1934b5 100644
--- a/games/drturtle/Makefile
+++ b/games/drturtle/Makefile
@@ -169,7 +169,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),WINDOWS)
# resources file contains windows exe icon
# -Wl,--subsystem,windows hides the console window
- CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows
+ CFLAGS += $(RAYLIB_PATH)/raylib.rc.data -Wl,--subsystem,windows
endif
ifeq ($(PLATFORM_OS),LINUX)
CFLAGS += -D_DEFAULT_SOURCE
diff --git a/games/just_do/Makefile b/games/just_do/Makefile
index 464c6345..b6c935f6 100644
--- a/games/just_do/Makefile
+++ b/games/just_do/Makefile
@@ -169,7 +169,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),WINDOWS)
# resources file contains windows exe icon
# -Wl,--subsystem,windows hides the console window
- CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows
+ CFLAGS += $(RAYLIB_PATH)/raylib.rc.data -Wl,--subsystem,windows
endif
ifeq ($(PLATFORM_OS),LINUX)
CFLAGS += -D_DEFAULT_SOURCE
diff --git a/games/koala_seasons/Makefile b/games/koala_seasons/Makefile
index b0a8d4ee..8482bf2d 100644
--- a/games/koala_seasons/Makefile
+++ b/games/koala_seasons/Makefile
@@ -169,7 +169,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),WINDOWS)
# resources file contains windows exe icon
# -Wl,--subsystem,windows hides the console window
- CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows
+ CFLAGS += $(RAYLIB_PATH)/raylib.rc.data -Wl,--subsystem,windows
endif
ifeq ($(PLATFORM_OS),LINUX)
CFLAGS += -D_DEFAULT_SOURCE
diff --git a/games/light_my_ritual/Makefile b/games/light_my_ritual/Makefile
index 838207b7..fbc34aac 100644
--- a/games/light_my_ritual/Makefile
+++ b/games/light_my_ritual/Makefile
@@ -169,7 +169,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),WINDOWS)
# resources file contains windows exe icon
# -Wl,--subsystem,windows hides the console window
- CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows
+ CFLAGS += $(RAYLIB_PATH)/raylib.rc.data -Wl,--subsystem,windows
endif
ifeq ($(PLATFORM_OS),LINUX)
CFLAGS += -D_DEFAULT_SOURCE
diff --git a/games/skully_escape/Makefile b/games/skully_escape/Makefile
index 58a9b557..8875ad52 100644
--- a/games/skully_escape/Makefile
+++ b/games/skully_escape/Makefile
@@ -169,7 +169,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),WINDOWS)
# resources file contains windows exe icon
# -Wl,--subsystem,windows hides the console window
- CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows
+ CFLAGS += $(RAYLIB_PATH)/raylib.rc.data -Wl,--subsystem,windows
endif
ifeq ($(PLATFORM_OS),LINUX)
CFLAGS += -D_DEFAULT_SOURCE
diff --git a/games/transmission/Makefile b/games/transmission/Makefile
index 51533eac..a1b7e764 100644
--- a/games/transmission/Makefile
+++ b/games/transmission/Makefile
@@ -169,7 +169,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),WINDOWS)
# resources file contains windows exe icon
# -Wl,--subsystem,windows hides the console window
- CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows
+ CFLAGS += $(RAYLIB_PATH)/raylib.rc.data -Wl,--subsystem,windows
endif
ifeq ($(PLATFORM_OS),LINUX)
CFLAGS += -D_DEFAULT_SOURCE
diff --git a/games/wave_collector/Makefile b/games/wave_collector/Makefile
index c7215848..06e74799 100644
--- a/games/wave_collector/Makefile
+++ b/games/wave_collector/Makefile
@@ -169,7 +169,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),WINDOWS)
# resources file contains windows exe icon
# -Wl,--subsystem,windows hides the console window
- CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows
+ CFLAGS += $(RAYLIB_PATH)/raylib.rc.data -Wl,--subsystem,windows
endif
ifeq ($(PLATFORM_OS),LINUX)
CFLAGS += -D_DEFAULT_SOURCE