winemaker: Add includes separately for vcproj files.
This commit is contained in:
parent
7bd49ab2df
commit
bf236d423f
|
@ -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") {
|
||||
|
|
Loading…
Reference in New Issue