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

winemaker: Add includes separately for vcproj files.

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