2014-04-09 06:26:45 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-04-14 20:54:49 -04:00
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2014-04-09 06:26:45 -04:00
|
|
|
|
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
<_PropertySheetDisplayName>Libsodium Test Common Settings</_PropertySheetDisplayName>
|
|
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
<RunCodeAnalysis>false</RunCodeAnalysis>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<!-- Configuration -->
|
2014-05-10 06:47:35 -04:00
|
|
|
|
2014-04-09 06:26:45 -04:00
|
|
|
<ItemDefinitionGroup>
|
|
|
|
<ClCompile>
|
2014-05-10 06:47:35 -04:00
|
|
|
<AdditionalIncludeDirectories>$(RepoRoot)test\default\;$(RepoRoot)test\quirks\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
2014-04-09 06:26:45 -04:00
|
|
|
<EnablePREfast>false</EnablePREfast>
|
|
|
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
<!--<PreprocessorDefinitions>NATIVE_LITTLE_ENDIAN;%(PreprocessorDefinitions)</PreprocessorDefinitions>-->
|
|
|
|
</ClCompile>
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
|
|
|
<!-- Dependencies -->
|
|
|
|
|
|
|
|
<ImportGroup Label="PropertySheets">
|
|
|
|
<Import Project="$(SolutionDir)libsodium.import.props" />
|
|
|
|
</ImportGroup>
|
|
|
|
|
2014-05-21 03:01:26 -04:00
|
|
|
<PropertyGroup Condition="'$(DefaultLinkage)' == 'dynamic'">
|
|
|
|
<Linkage-libsodium>dynamic</Linkage-libsodium>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(DefaultLinkage)' == 'ltcg'">
|
|
|
|
<Linkage-libsodium>ltcg</Linkage-libsodium>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(DefaultLinkage)' == 'static'">
|
|
|
|
<Linkage-libsodium>static</Linkage-libsodium>
|
2014-04-09 06:26:45 -04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<!-- Messages -->
|
|
|
|
|
|
|
|
<Target Name="LinkageInfo" BeforeTargets="PrepareForBuild">
|
|
|
|
<Message Text="Linkage-libsodium : $(Linkage-libsodium)" Importance="high"/>
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
</Project>
|