mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-21 19:45:10 +00:00
Fix for Icon In dumb msys DIR (#111)
This commit is contained in:
parent
d39e93ba1d
commit
3cd6ece3d7
1 changed files with 7 additions and 5 deletions
12
Makefile
12
Makefile
|
@ -904,13 +904,15 @@ endif
|
|||
#icon
|
||||
ifeq ($(WINDOWS_BUILD),1)
|
||||
ifeq ($(ICON),1)
|
||||
Command := mkdir $(BUILD_DIR)/res
|
||||
Resp := $(shell $(call Command))
|
||||
Command := mkdir -p "$(BUILD_DIR)/res"
|
||||
Resp := $(shell $(call Command))
|
||||
|
||||
Command := windres -o "$(BUILD_DIR)/res/icon.o" -i res/icon.rc
|
||||
Resp := $(shell $(call Command))
|
||||
Command := windres -o "$(BUILD_DIR)/res/icon.o" -i "res/icon.rc"
|
||||
Resp := $(shell $(call Command))
|
||||
|
||||
LDFLAGS += $(BUILD_DIR)/res/icon.o
|
||||
ifeq ($(.SHELLSTATUS),0)
|
||||
LDFLAGS += $(BUILD_DIR)/res/icon.o
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue