Commit f32ec643 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

msvcmaker: Generate include project and make every wine module depend on it.

The include project generates .h files from .idl files so that they can be used when compiling the modules.
parent 0b334e04
......@@ -158,6 +158,8 @@ MAKEFILE_IN: foreach my $makefile_in_file (@makefile_in_files) {
if($module eq "none") {
if($makefile_in_file eq "tools/winebuild/Makefile.in") {
$module = "winebuild.exe";
} elsif ($makefile_in_file eq "include/Makefile.in") {
$module = "include.lib";
} else {
next MAKEFILE_IN;
}
......@@ -1004,7 +1006,7 @@ sub _generate_wine_dsw($) {
} elsif($project =~ /^(?:gdi32)_.+?$/) {
@dependencies = ();
} else {
@dependencies = ("wine", "winebuild");
@dependencies = ("wine", "include", "winebuild");
}
if($project =~ /^gdi32$/) {
......
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