mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2025-02-23 19:40:56 +00:00
Makefile: using generic windres if specific one is not present in mingw platform
This commit is contained in:
parent
d4e1a01f33
commit
864f66a1c0
1 changed files with 5 additions and 3 deletions
8
Makefile
8
Makefile
|
@ -530,9 +530,11 @@ ifdef MINGW
|
||||||
CC=gcc
|
CC=gcc
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef WINDRES
|
endif
|
||||||
WINDRES=windres
|
|
||||||
endif
|
# using generic windres if specific one is not present
|
||||||
|
ifndef WINDRES
|
||||||
|
WINDRES=windres
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CC),)
|
ifeq ($(CC),)
|
||||||
|
|
Loading…
Reference in a new issue