Commit 80d30558 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

widl: Add IDL installation directory to include path.

parent 19c9d083
......@@ -21,6 +21,7 @@ C_SRCS = \
LEX_SRCS = parser.l
BISON_SRCS = parser.y
EXTRADEFS = -DDEFAULT_INCLUDE_DIR=\"$(includedir)/windows/\"
INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
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) {
set_everything(TRUE);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment