FS-10690: [libblade, Build-System] Do not import BaseDir props if already imported.
This commit is contained in:
parent
1991ce4817
commit
9f12a57c1d
|
@ -3,4 +3,7 @@
|
||||||
<PropertyGroup Label="UserMacros" Condition=" '$(BaseDir)' == ''">
|
<PropertyGroup Label="UserMacros" Condition=" '$(BaseDir)' == ''">
|
||||||
<BaseDir>$(MSBuildThisFileDirectory)..\</BaseDir>
|
<BaseDir>$(MSBuildThisFileDirectory)..\</BaseDir>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<BaseDirImported>true</BaseDirImported>
|
||||||
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ImportGroup Label="PropertySheets">
|
<ImportGroup Label="PropertySheets">
|
||||||
<Import Project="basedir.props"/>
|
<Import Project="basedir.props" Condition=" '$(BaseDirImported)' == ''"/>
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros">
|
<PropertyGroup Label="UserMacros">
|
||||||
<PCREVersion>8.34</PCREVersion>
|
<PCREVersion>8.34</PCREVersion>
|
||||||
|
|
Loading…
Reference in New Issue