mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
allow UNICODE=0 builds
svn path=/trunk/; revision=7364
This commit is contained in:
parent
4d9498236c
commit
1558a94775
2 changed files with 8 additions and 2 deletions
|
@ -18,7 +18,9 @@ RC = windres
|
|||
CD_PREFIX :=
|
||||
endif
|
||||
|
||||
ifndef UNICODE
|
||||
UNICODE = 1
|
||||
endif
|
||||
|
||||
TOOLS_PATH = ../../../tools
|
||||
|
||||
|
@ -36,7 +38,7 @@ RCFLAGS += -DNDEBUG
|
|||
LFLAGS += -s
|
||||
endif
|
||||
|
||||
ifdef UNICODE
|
||||
ifeq ($(ifdef UNICODE),1)
|
||||
CFLAGS += -DUNICODE
|
||||
# LFLAGS+= -Wl,--entry,_wWinMain@16
|
||||
endif
|
||||
|
|
|
@ -22,7 +22,11 @@ RCFLAGS += -DNDEBUG
|
|||
LFLAGS += -s
|
||||
endif
|
||||
|
||||
ifdef UNICODE
|
||||
ifndef UNICODE
|
||||
UNICODE = 1
|
||||
endif
|
||||
|
||||
ifeq ($(UNICODE),1)
|
||||
CFLAGS += -DUNICODE
|
||||
# LFLAGS+= -Wl,--entry,_wWinMain@16
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue