2014-08-23 00:17:49 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-10-19 09:27:57 +00:00
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2011-01-27 05:01:00 +00:00
|
|
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
|
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
<ProjectConfiguration Include="Release|x64">
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Label="Globals">
|
2013-10-19 09:27:57 +00:00
|
|
|
|
<ProjectGuid>{6BBD47CF-91FD-4077-B676-8B76980178A9}</ProjectGuid>
|
2011-01-27 05:01:00 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
2013-10-19 09:27:57 +00:00
|
|
|
|
<PropertyGroup Label="Configuration">
|
2011-01-27 05:01:00 +00:00
|
|
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
2013-10-19 09:27:57 +00:00
|
|
|
|
<PlatformToolset>v120</PlatformToolset>
|
2011-01-27 05:01:00 +00:00
|
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
|
|
</PropertyGroup>
|
2013-10-19 09:27:57 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
2011-01-27 05:01:00 +00:00
|
|
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
|
|
|
</PropertyGroup>
|
2013-10-19 09:27:57 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
|
2011-01-27 10:41:26 +00:00
|
|
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
|
|
|
</PropertyGroup>
|
2011-01-27 05:01:00 +00:00
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
|
|
<ImportGroup Label="ExtensionSettings">
|
|
|
|
|
</ImportGroup>
|
2013-10-19 09:27:57 +00:00
|
|
|
|
<ImportGroup Label="PropertySheets">
|
2011-01-27 05:01:00 +00:00
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
2011-02-08 04:03:48 +00:00
|
|
|
|
<Import Project="..\..\VSProps\Base.props" />
|
2014-08-15 06:51:13 +00:00
|
|
|
|
<Import Project="..\..\VSProps\PCHUse.props" />
|
2011-01-27 10:41:26 +00:00
|
|
|
|
</ImportGroup>
|
2011-01-27 05:01:00 +00:00
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
|
|
|
|
<ItemGroup>
|
2013-12-07 20:14:29 +00:00
|
|
|
|
<ClCompile Include="ControllerEmu.cpp" />
|
|
|
|
|
<ClCompile Include="ControllerInterface\ControllerInterface.cpp" />
|
|
|
|
|
<ClCompile Include="ControllerInterface\Device.cpp" />
|
|
|
|
|
<ClCompile Include="ControllerInterface\DInput\DInput.cpp" />
|
|
|
|
|
<ClCompile Include="ControllerInterface\DInput\DInputJoystick.cpp" />
|
|
|
|
|
<ClCompile Include="ControllerInterface\DInput\DInputKeyboardMouse.cpp" />
|
2014-09-01 05:41:33 +00:00
|
|
|
|
<ClCompile Include="ControllerInterface\DInput\XInputFilter.cpp">
|
|
|
|
|
<!--Disable /Zc:strictStrings so that wbem headers may compile-->
|
|
|
|
|
<!--
|
|
|
|
|
This is somewhat gross as it doesn't dynamically remove the option,
|
|
|
|
|
I really hope the issue is fixed in next VS release :(
|
|
|
|
|
-->
|
|
|
|
|
<AdditionalOptions>/Zo /Zc:inline /Zc:rvalueCast /volatile:iso</AdditionalOptions>
|
|
|
|
|
</ClCompile>
|
2013-12-07 20:14:29 +00:00
|
|
|
|
<ClCompile Include="ControllerInterface\ExpressionParser.cpp" />
|
2014-02-05 10:28:32 +00:00
|
|
|
|
<ClCompile Include="ControllerInterface\ForceFeedback\ForceFeedbackDevice.cpp" />
|
2013-12-07 20:14:29 +00:00
|
|
|
|
<ClCompile Include="ControllerInterface\XInput\XInput.cpp" />
|
|
|
|
|
<ClCompile Include="InputConfig.cpp" />
|
2011-01-27 05:01:00 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2013-12-07 20:14:29 +00:00
|
|
|
|
<ClInclude Include="ControllerEmu.h" />
|
|
|
|
|
<ClInclude Include="ControllerInterface\ControllerInterface.h" />
|
|
|
|
|
<ClInclude Include="ControllerInterface\Device.h" />
|
|
|
|
|
<ClInclude Include="ControllerInterface\DInput\DInput.h" />
|
2014-08-23 00:17:49 +00:00
|
|
|
|
<ClInclude Include="ControllerInterface\DInput\DInput8.h" />
|
2013-12-07 20:14:29 +00:00
|
|
|
|
<ClInclude Include="ControllerInterface\DInput\DInputJoystick.h" />
|
|
|
|
|
<ClInclude Include="ControllerInterface\DInput\DInputKeyboardMouse.h" />
|
2014-09-01 05:41:33 +00:00
|
|
|
|
<ClInclude Include="ControllerInterface\DInput\XInputFilter.h" />
|
2013-12-07 20:14:29 +00:00
|
|
|
|
<ClInclude Include="ControllerInterface\ExpressionParser.h" />
|
2014-02-05 10:28:32 +00:00
|
|
|
|
<ClInclude Include="ControllerInterface\ForceFeedback\ForceFeedbackDevice.h" />
|
2013-12-07 20:14:29 +00:00
|
|
|
|
<ClInclude Include="ControllerInterface\XInput\XInput.h" />
|
|
|
|
|
<ClInclude Include="GCPadStatus.h" />
|
|
|
|
|
<ClInclude Include="InputConfig.h" />
|
2011-01-27 05:01:00 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2013-10-19 09:27:57 +00:00
|
|
|
|
<Text Include="CMakeLists.txt" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2014-08-31 12:51:38 +00:00
|
|
|
|
<ProjectReference Include="$(CoreDir)Common\Common.vcxproj">
|
2013-10-19 09:27:57 +00:00
|
|
|
|
<Project>{2e6c348c-c75c-4d94-8d1e-9c1fcbf3efe4}</Project>
|
|
|
|
|
</ProjectReference>
|
2011-01-27 05:01:00 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
|
<ImportGroup Label="ExtensionTargets">
|
|
|
|
|
</ImportGroup>
|
2014-08-23 00:17:49 +00:00
|
|
|
|
</Project>
|