1
0
mirror of https://github.com/nefarius/WDF-Utils.git synced 2024-09-19 18:49:32 +02:00
WDF-Utils/BFF/BFF.props

20 lines
1.2 KiB
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<_PropertySheetDisplayName>Bus Filter Framework</_PropertySheetDisplayName>
<!-- By default, look for BFF in parent root directory, otherwise use environment variable value -->
<BffRootPath Condition="'$(BffRootPath)' == ''">$(SolutionDir)..\bus-filter-framework</BffRootPath>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>$(BffRootPath)\bff;$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<Link>
2022-05-04 12:38:52 +02:00
<AdditionalDependencies Condition="'$(DriverType)'=='KMDF' and '$(PlatformName)'=='x64'">$(BffRootPath)\$(PlatformName)\$(Configuration)\bff.lib;%(AdditionalDependencies);</AdditionalDependencies>
2022-05-04 12:40:52 +02:00
<AdditionalDependencies Condition="'$(DriverType)'=='KMDF' and '$(PlatformName)'=='Win32'">$(BffRootPath)\$(Configuration)\bff.lib;%(AdditionalDependencies);</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup />
</Project>