msbuild was complaining that with warning MSB8012 that |TargetPath| does not match the Linker's OutputFile property value. The problem was caused by the wrong ordering of the setting of build properties and the inclusion of the built-in property sheets.
26 lines
1014 B
XML
26 lines
1014 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{E9BBE9B6-8361-4007-B523-E59FDB775D01}</ProjectGuid>
|
|
<TargetName>cipher_test</TargetName>
|
|
</PropertyGroup>
|
|
<ImportGroup Label="PropertySheets">
|
|
<Import Project="..\..\mk\WindowsTest.props" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="Configuration">
|
|
<OutDir>$(OutRootDir)test\ring\crypto\cipher\</OutDir>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="cipher_test.cc" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\libring.Windows.vcxproj">
|
|
<Project>{f4c0a1b6-5e09-41c8-8242-3e1f6762fb18}</Project>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\test\test.Windows.vcxproj">
|
|
<Project>{1dace503-6498-492d-b1ff-f9ee18624443}</Project>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
</Project>
|