mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-23 04:12:39 +00:00
Merge pull request #277 from em92/master
Fallback to generic a windres if a cross compiler one cannot be found
This commit is contained in:
commit
25cc2edc69
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