widl: Add IDL installation directory to include path.
This commit is contained in:
parent
19c9d08304
commit
80d3055869
|
@ -21,6 +21,7 @@ C_SRCS = \
|
||||||
LEX_SRCS = parser.l
|
LEX_SRCS = parser.l
|
||||||
BISON_SRCS = parser.y
|
BISON_SRCS = parser.y
|
||||||
|
|
||||||
|
EXTRADEFS = -DDEFAULT_INCLUDE_DIR=\"$(includedir)/windows/\"
|
||||||
INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
|
INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
|
||||||
|
|
||||||
all: $(PROGRAMS)
|
all: $(PROGRAMS)
|
||||||
|
|
|
@ -643,6 +643,10 @@ int main(int argc,char *argv[])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef DEFAULT_INCLUDE_DIR
|
||||||
|
wpp_add_include_path(DEFAULT_INCLUDE_DIR);
|
||||||
|
#endif
|
||||||
|
|
||||||
if(do_everything) {
|
if(do_everything) {
|
||||||
set_everything(TRUE);
|
set_everything(TRUE);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue