mirror of https://github.com/PCSX2/pcsx2.git
113 lines
4.9 KiB
XML
113 lines
4.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
<ProjectConfiguration Include="Debug|Win32">
|
|
<Configuration>Debug</Configuration>
|
|
<Platform>Win32</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Debug|x64">
|
|
<Configuration>Debug</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Release|Win32">
|
|
<Configuration>Release</Configuration>
|
|
<Platform>Win32</Platform>
|
|
</ProjectConfiguration>
|
|
<ProjectConfiguration Include="Release|x64">
|
|
<Configuration>Release</Configuration>
|
|
<Platform>x64</Platform>
|
|
</ProjectConfiguration>
|
|
</ItemGroup>
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{E4081455-398C-4610-A87C-90A8A7D72DC3}</ProjectGuid>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
<PropertyGroup Label="Configuration">
|
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
<WholeProgramOptimization Condition="$(Configuration.Contains(Release))">true</WholeProgramOptimization>
|
|
<UseDebugLibraries Condition="$(Configuration.Contains(Debug))">true</UseDebugLibraries>
|
|
<UseDebugLibraries Condition="!$(Configuration.Contains(Debug))">false</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
<ImportGroup Label="ExtensionSettings" />
|
|
<ImportGroup Label="PropertySheets">
|
|
<Import Project="ProjectRootDir.props" />
|
|
<Import Project="..\..\common\vsprops\BaseProperties.props" />
|
|
<Import Condition="$(Configuration.Contains(Debug))" Project="..\..\common\vsprops\CodeGen_Debug.props" />
|
|
<Import Condition="$(Configuration.Contains(Release))" Project="..\..\common\vsprops\CodeGen_Release.props" />
|
|
<Import Condition="!$(Configuration.Contains(Release))" Project="..\..\common\vsprops\IncrementalLinking.props" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="UserMacros" />
|
|
<PropertyGroup>
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<ItemDefinitionGroup>
|
|
<ClCompile>
|
|
<PrecompiledHeader>Use</PrecompiledHeader>
|
|
<PrecompiledHeaderFile>Global.h</PrecompiledHeaderFile>
|
|
<DisableSpecificWarnings>4995;4996;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
|
</ClCompile>
|
|
<Link>
|
|
<AdditionalDependencies>Setupapi.lib;Winmm.lib;Comdlg32.lib;dinput8.lib;dxguid.lib;comctl32.lib;hid.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
<ModuleDefinitionFile>.\LilyPad.def</ModuleDefinitionFile>
|
|
<TargetMachine Condition="'$(Platform)'=='Win32'">MachineX86</TargetMachine>
|
|
<TargetMachine Condition="'$(Platform)'=='x64'">MachineX64</TargetMachine>
|
|
</Link>
|
|
</ItemDefinitionGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="Config.cpp" />
|
|
<ClCompile Include="Diagnostics.cpp" />
|
|
<ClCompile Include="LilyPad.cpp" />
|
|
<ClCompile Include="Global.cpp">
|
|
<PrecompiledHeader>Create</PrecompiledHeader>
|
|
</ClCompile>
|
|
<ClCompile Include="DirectInput.cpp" />
|
|
<ClCompile Include="DualShock3.cpp" />
|
|
<ClCompile Include="HidDevice.cpp" />
|
|
<ClCompile Include="KeyboardQueue.cpp" />
|
|
<ClCompile Include="RawInput.cpp" />
|
|
<ClCompile Include="Tooltips.cpp" />
|
|
<ClCompile Include="WindowsKeyboard.cpp" />
|
|
<ClCompile Include="WindowsMessaging.cpp" />
|
|
<ClCompile Include="WindowsMouse.cpp" />
|
|
<ClCompile Include="XInputEnum.cpp" />
|
|
<ClCompile Include="DeviceEnumerator.cpp" />
|
|
<ClCompile Include="InputManager.cpp" />
|
|
<ClCompile Include="VKey.cpp" />
|
|
<ClCompile Include="WndProcEater.cpp" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="Config.h" />
|
|
<ClInclude Include="Diagnostics.h" />
|
|
<ClInclude Include="Global.h" />
|
|
<ClInclude Include="resource.h" />
|
|
<ClInclude Include="DirectInput.h" />
|
|
<ClInclude Include="DualShock3.h" />
|
|
<ClInclude Include="HidDevice.h" />
|
|
<ClInclude Include="KeyboardQueue.h" />
|
|
<ClInclude Include="RawInput.h" />
|
|
<ClInclude Include="Tooltips.h" />
|
|
<ClInclude Include="usb.h" />
|
|
<ClInclude Include="WindowsKeyboard.h" />
|
|
<ClInclude Include="WindowsMessaging.h" />
|
|
<ClInclude Include="WindowsMouse.h" />
|
|
<ClInclude Include="XInputEnum.h" />
|
|
<ClInclude Include="DeviceEnumerator.h" />
|
|
<ClInclude Include="InputManager.h" />
|
|
<ClInclude Include="VKey.h" />
|
|
<ClInclude Include="WndProcEater.h" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Default.ini" />
|
|
<None Include="frog.ico" />
|
|
<None Include="LilyPad.def" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ResourceCompile Include="LilyPad.rc" />
|
|
</ItemGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
<ImportGroup Label="ExtensionTargets" />
|
|
</Project>
|