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