OpenRCT2/test/tests/tests.vcxproj

113 lines
4.8 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2016-12-01 19:34:14 -05:00
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<SolutionDir Condition="'$(SolutionDir)'==''">..\..\</SolutionDir>
</PropertyGroup>
<ItemGroup Label="ProjectConfigurations">
2017-01-04 17:50:35 -05:00
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
2016-12-01 19:34:14 -05:00
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="ReleaseLTCG|arm64">
<Configuration>ReleaseLTCG</Configuration>
<Platform>arm64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="ReleaseLTCG|Win32">
<Configuration>ReleaseLTCG</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="ReleaseLTCG|x64">
<Configuration>ReleaseLTCG</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
2017-01-04 17:50:35 -05:00
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
2016-12-01 19:34:14 -05:00
<Platform>Win32</Platform>
</ProjectConfiguration>
2017-01-04 17:50:35 -05:00
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
2016-12-01 19:34:14 -05:00
<Platform>x64</Platform>
</ProjectConfiguration>
2017-01-04 17:50:35 -05:00
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
2016-12-01 19:34:14 -05:00
<Platform>x64</Platform>
</ProjectConfiguration>
2022-03-26 15:14:12 -04:00
<ProjectConfiguration Include="Debug|arm64">
<Configuration>Debug</Configuration>
<Platform>arm64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|arm64">
<Configuration>Release</Configuration>
<Platform>arm64</Platform>
</ProjectConfiguration>
2016-12-01 19:34:14 -05:00
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{62B020FA-E4FB-4C6E-B32A-DC999470F155}</ProjectGuid>
<RootNamespace>tests</RootNamespace>
<ProjectName>tests</ProjectName>
2016-12-01 19:34:14 -05:00
</PropertyGroup>
<PropertyGroup Label="Configuration">
2016-12-01 19:34:14 -05:00
<ConfigurationType>Application</ConfigurationType>
</PropertyGroup>
2016-12-01 21:49:50 -05:00
<Import Project="..\..\openrct2.common.props" />
2016-12-01 19:34:14 -05:00
<PropertyGroup>
<OutDir>$(SolutionDir)bin\</OutDir>
<LibraryPath>$(SolutionDir)bin;$(LibraryPath)</LibraryPath>
<LibraryPath Condition="'$(Configuration)'=='Debug'">$(SolutionDir)lib\$(Platform)\debug\lib;$(LibraryPath)</LibraryPath>
<LibraryPath Condition="'$(Configuration)'!='Debug'">$(SolutionDir)lib\$(Platform)\lib;$(LibraryPath)</LibraryPath>
2016-12-01 19:34:14 -05:00
</PropertyGroup>
<ItemDefinitionGroup>
2016-12-15 20:19:41 -05:00
<ClCompile>
<PreprocessorDefinitions>GTEST_LANG_CXX11;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
2016-12-01 19:34:14 -05:00
<Link>
2017-01-09 14:57:26 -05:00
<AdditionalDependencies>libopenrct2.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies Condition="'$(Configuration)'=='Debug'">gtest.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies Condition="'$(Configuration)'!='Debug'">gtest.lib;%(AdditionalDependencies)</AdditionalDependencies>
2016-12-01 21:49:50 -05:00
<SubSystem>Console</SubSystem>
2016-12-01 19:34:14 -05:00
</Link>
2017-05-17 14:20:10 -04:00
<PostBuildEvent>
<Command>xcopy /EIY "$(ProjectDir)testdata" "$(OutputPath)testdata"</Command>
<Message>Copies test data to output directory.</Message>
</PostBuildEvent>
2016-12-01 19:34:14 -05:00
</ItemDefinitionGroup>
<!-- Files -->
2016-12-01 19:34:14 -05:00
<ItemGroup>
2017-02-25 11:07:08 -05:00
<ClInclude Include="AssertHelpers.hpp" />
<ClInclude Include="helpers\StringHelpers.hpp" />
2017-01-11 12:15:24 -05:00
<ClInclude Include="TestData.h" />
2016-12-01 19:34:14 -05:00
</ItemGroup>
<ItemGroup>
2021-12-12 16:33:11 -05:00
<ClCompile Include="BitSetTests.cpp" />
2019-02-04 08:39:56 -05:00
<ClCompile Include="CircularBuffer.cpp" />
<ClCompile Include="CLITests.cpp" />
<ClCompile Include="CryptTests.cpp" />
<ClCompile Include="Endianness.cpp" />
2021-07-22 13:51:28 -04:00
<ClCompile Include="EnumMapTest.cpp" />
2020-10-08 19:50:08 -04:00
<ClCompile Include="FormattingTests.cpp" />
2016-12-01 19:34:14 -05:00
<ClCompile Include="LanguagePackTest.cpp" />
2018-05-11 19:04:16 -04:00
<ClCompile Include="ImageImporterTests.cpp" />
2017-02-23 17:38:25 -05:00
<ClCompile Include="IniReaderTest.cpp" />
<ClCompile Include="IniWriterTest.cpp" />
<ClCompile Include="LocalisationTest.cpp" />
2017-06-21 12:39:10 -04:00
<ClCompile Include="MultiLaunch.cpp" />
<ClCompile Include="ReplayTests.cpp" />
<ClCompile Include="PlayTests.cpp" />
<ClCompile Include="Pathfinding.cpp" />
2017-01-10 07:57:55 -05:00
<ClCompile Include="RideRatings.cpp" />
<ClCompile Include="S6ImportExportTests.cpp" />
<ClCompile Include="SawyerCodingTest.cpp" />
<ClCompile Include="ScenarioPatcherTests.cpp" />
2017-01-11 12:15:24 -05:00
<ClCompile Include="TestData.cpp" />
2016-12-01 19:34:14 -05:00
<ClCompile Include="tests.cpp" />
2017-02-24 16:48:06 -05:00
<ClCompile Include="StringTest.cpp" />
<ClCompile Include="TileElements.cpp" />
<ClCompile Include="TileElementsView.cpp" />
2016-12-01 19:34:14 -05:00
</ItemGroup>
<ItemGroup>
<None Include="testdata\sprites\badManifest.json" />
<None Include="testdata\sprites\example.dat" />
<None Include="testdata\sprites\manifest.json" />
</ItemGroup>
2016-12-01 19:34:14 -05:00
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
</Project>