Commit bf236d42 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winemaker: Add includes separately for vcproj files.

parent 7bd49ab2
......@@ -959,11 +959,13 @@ sub source_scan_project_file($$$)
if ($vc_compiler_tool->getName eq "AdditionalIncludeDirectories") {
$configt=$vc_compiler_tool->getValue;
$configt=~s/\\/\//g;
$configt=~s/;/ -I/g;
my @addincl = split(/\s*;\s*/, $configt);
foreach $configt (@addincl) {
push @{@$project_settings[$T_INCLUDE_PATH]},"-I".$configt;
}
}
}
}
if ($find_tool[0]->getValue eq "VCLinkerTool") {
foreach my $vc_linker_tool ($vc_configuration_tools->attributes) {
if ($vc_linker_tool->getName eq "AdditionalDependencies") {
......
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