mirror of https://github.com/M2Team/NanaZip.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
879 B
25 lines
879 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
PROJECT: NanaZip Platform Abstraction Layer (K7Pal)
|
|
FILE: K7PalStatic.props
|
|
PURPOSE: MSBuild Properties for referencing the K7Pal static library
|
|
|
|
LICENSE: The MIT License
|
|
|
|
MAINTAINER: MouriNaruto (Kenji.Mouri@outlook.com)
|
|
-->
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<IncludePath>$(MSBuildThisFileDirectory);$(IncludePath)</IncludePath>
|
|
</PropertyGroup>
|
|
<ItemDefinitionGroup>
|
|
<Link>
|
|
<AdditionalDependencies>$(OutDir)K7PalStatic.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
</Link>
|
|
</ItemDefinitionGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(MSBuildThisFileDirectory)K7PalStatic.vcxproj">
|
|
<Project>{249B9FCE-0114-4EE9-A31E-C8A36EEA2279}</Project>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
</Project>
|