2016-12-01 19:34:14 -05:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<SolutionDir Condition="'$(SolutionDir)'==''">..\..\</SolutionDir>
|
2016-12-02 08:36:03 -05:00
|
|
|
|
<GtestDir Condition="'$(GtestDir)'==''">$(SolutionDir)lib\googletest\googletest</GtestDir>
|
2016-12-01 19:34:14 -05:00
|
|
|
|
</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>
|
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>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
|
<ProjectGuid>{62B020FA-E4FB-4C6E-B32A-DC999470F155}</ProjectGuid>
|
|
|
|
|
<RootNamespace>tests</RootNamespace>
|
2016-12-01 19:59:52 -05:00
|
|
|
|
<ProjectName>tests</ProjectName>
|
2016-12-01 19:34:14 -05:00
|
|
|
|
</PropertyGroup>
|
2016-12-01 19:59:52 -05:00
|
|
|
|
<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\tests\</OutDir>
|
2017-01-04 17:50:35 -05:00
|
|
|
|
<IncludePath>$(GtestDir);$(GtestDir)\include;$(IncludePath)</IncludePath>
|
2016-12-01 19:59:52 -05:00
|
|
|
|
<LibraryPath>$(SolutionDir)bin;$(LibraryPath)</LibraryPath>
|
2016-12-01 19:34:14 -05:00
|
|
|
|
</PropertyGroup>
|
2016-12-01 19:59:52 -05:00
|
|
|
|
<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>
|
2016-12-01 21:49:50 -05:00
|
|
|
|
<SubSystem>Console</SubSystem>
|
2016-12-01 19:34:14 -05:00
|
|
|
|
</Link>
|
|
|
|
|
</ItemDefinitionGroup>
|
2016-12-01 19:59:52 -05:00
|
|
|
|
<!-- Files -->
|
2016-12-01 19:34:14 -05:00
|
|
|
|
<ItemGroup>
|
2017-02-25 11:07:08 -05:00
|
|
|
|
<ClInclude Include="AssertHelpers.hpp" />
|
2017-01-11 12:15:24 -05:00
|
|
|
|
<ClInclude Include="TestData.h" />
|
2016-12-01 19:34:14 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ClCompile Include="LanguagePackTest.cpp" />
|
2017-02-23 17:38:25 -05:00
|
|
|
|
<ClCompile Include="IniReaderTest.cpp" />
|
|
|
|
|
<ClCompile Include="IniWriterTest.cpp" />
|
2017-01-10 07:57:55 -05:00
|
|
|
|
<ClCompile Include="RideRatings.cpp" />
|
2016-12-01 19:34:14 -05:00
|
|
|
|
<ClCompile Include="sawyercoding_test.cpp" />
|
2016-12-02 08:36:03 -05:00
|
|
|
|
<ClCompile Include="$(GtestDir)\src\gtest-all.cc" />
|
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" />
|
2016-12-01 19:34:14 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
|
</Project>
|