Commit a8d69d6e authored by Alexandre Julliard's avatar Alexandre Julliard

Add current directory to default include path.

parent 36c31997
...@@ -245,6 +245,8 @@ int main(int argc,char *argv[]) ...@@ -245,6 +245,8 @@ int main(int argc,char *argv[])
wpp_add_cmdline_define("RC_INVOKED=1"); wpp_add_cmdline_define("RC_INVOKED=1");
wpp_add_cmdline_define("__WIN32__=1"); wpp_add_cmdline_define("__WIN32__=1");
wpp_add_cmdline_define("__FLAT__=1"); wpp_add_cmdline_define("__FLAT__=1");
/* Microsoft RC always searches current directory */
wpp_add_include_path(".");
/* First rebuild the commandline to put in destination */ /* First rebuild the commandline to put in destination */
/* Could be done through env[], but not all OS-es support it */ /* Could be done through env[], but not all OS-es support it */
......
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