diff options
| author | raysan5 <[email protected]> | 2018-07-21 16:18:33 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2018-07-21 16:18:33 +0200 |
| commit | 7dc66d2d3f0668edd46ed3380656692d67ae6da0 (patch) | |
| tree | 080bb5ae4055801ca40b47e4a825857fe59b1b11 | |
| parent | 864511fe57a6eff7c7477ca3655012dc5010b191 (diff) | |
| download | raylib-7dc66d2d3f0668edd46ed3380656692d67ae6da0.tar.gz raylib-7dc66d2d3f0668edd46ed3380656692d67ae6da0.zip | |
Looking for a place for raylib resource file
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | examples/Makefile | 2 | ||||
| -rw-r--r-- | games/Makefile | 2 | ||||
| -rw-r--r-- | games/drturtle/Makefile | 2 | ||||
| -rw-r--r-- | games/just_do/Makefile | 2 | ||||
| -rw-r--r-- | games/koala_seasons/Makefile | 2 | ||||
| -rw-r--r-- | games/light_my_ritual/Makefile | 2 | ||||
| -rw-r--r-- | games/skully_escape/Makefile | 2 | ||||
| -rw-r--r-- | games/transmission/Makefile | 2 | ||||
| -rw-r--r-- | games/wave_collector/Makefile | 2 | ||||
| -rw-r--r-- | raylib.rc.o (renamed from src/raylib.rc.o) | bin | 107260 -> 107260 bytes | |||
| -rw-r--r-- | templates/advance_game/Makefile | 2 | ||||
| -rw-r--r-- | templates/simple_game/Makefile | 2 | ||||
| -rw-r--r-- | templates/standard_game/Makefile | 2 |
14 files changed, 13 insertions, 13 deletions
@@ -48,7 +48,7 @@ ipch/ # Ignore compiled binaries *.o *.exe -!src/raylib.rc.o +!raylib.rc.o # Ignore all examples files examples/* diff --git a/examples/Makefile b/examples/Makefile index e62d6980..518b9fbd 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -216,7 +216,7 @@ 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.o -Wl,--subsystem,windows + CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows endif ifeq ($(PLATFORM_OS),LINUX) ifeq ($(RAYLIB_BUILD_MODE),DEBUG) diff --git a/games/Makefile b/games/Makefile index 01c0bbe3..94899a55 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)/src/raylib.rc.o -Wl,--subsystem,windows + CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows endif ifeq ($(PLATFORM_OS),LINUX) CFLAGS += -D_DEFAULT_SOURCE diff --git a/games/drturtle/Makefile b/games/drturtle/Makefile index d200a929..45a04ec4 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)/src/raylib.rc.o -Wl,--subsystem,windows + CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -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 9877b7d5..464c6345 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)/src/raylib.rc.o -Wl,--subsystem,windows + CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -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 d88177fe..b0a8d4ee 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)/src/raylib.rc.o -Wl,--subsystem,windows + CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -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 1eb69d7d..838207b7 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)/src/raylib.rc.o -Wl,--subsystem,windows + CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -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 924aad3d..58a9b557 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)/src/raylib.rc.o -Wl,--subsystem,windows + CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows endif ifeq ($(PLATFORM_OS),LINUX) CFLAGS += -D_DEFAULT_SOURCE diff --git a/games/transmission/Makefile b/games/transmission/Makefile index 34e50864..51533eac 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)/src/raylib.rc.o -Wl,--subsystem,windows + CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -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 d7ef1a35..c7215848 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)/src/raylib.rc.o -Wl,--subsystem,windows + CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows endif ifeq ($(PLATFORM_OS),LINUX) CFLAGS += -D_DEFAULT_SOURCE diff --git a/src/raylib.rc.o b/raylib.rc.o Binary files differindex 28005c73..28005c73 100644 --- a/src/raylib.rc.o +++ b/raylib.rc.o diff --git a/templates/advance_game/Makefile b/templates/advance_game/Makefile index a2d41193..36e9fec9 100644 --- a/templates/advance_game/Makefile +++ b/templates/advance_game/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)/src/raylib.rc.o -Wl,--subsystem,windows + CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows endif ifeq ($(PLATFORM_OS),LINUX) CFLAGS += -D_DEFAULT_SOURCE diff --git a/templates/simple_game/Makefile b/templates/simple_game/Makefile index 9e768f5f..2d79c2c7 100644 --- a/templates/simple_game/Makefile +++ b/templates/simple_game/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)/src/raylib.rc.o -Wl,--subsystem,windows + CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows endif ifeq ($(PLATFORM_OS),LINUX) CFLAGS += -D_DEFAULT_SOURCE diff --git a/templates/standard_game/Makefile b/templates/standard_game/Makefile index 2e19e17c..ef9dcd61 100644 --- a/templates/standard_game/Makefile +++ b/templates/standard_game/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)/src/raylib.rc.o -Wl,--subsystem,windows + CFLAGS += $(RAYLIB_PATH)/raylib.rc.o -Wl,--subsystem,windows endif ifeq ($(PLATFORM_OS),LINUX) CFLAGS += -D_DEFAULT_SOURCE |
