-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdinput8.vcxproj
109 lines (109 loc) · 5.16 KB
/
dinput8.vcxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>17.0</VCProjectVersion>
<Keyword>Win32Proj</Keyword>
<ProjectGuid>{ed4ec3bb-ae75-4461-a5ff-a8f89f8ce6b5}</ProjectGuid>
<RootNamespace>dinput8</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;NDEBUG;DINPUT8_EXPORTS;_WINDOWS;_USRDLL;WIN32_LEAN_AND_MEAN;_WINSOCK_DEPRECATED_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch.hpp</PrecompiledHeaderFile>
<AdditionalIncludeDirectories>$(SolutionDir)dependencies\boost\include\boost-1_86;$(SolutionDir)dependencies\detours\include;$(SolutionDir)dependencies\openssl\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableUAC>false</EnableUAC>
<AdditionalLibraryDirectories>$(SolutionDir)dependencies\boost\lib;$(SolutionDir)dependencies\detours\lib;$(SolutionDir)dependencies\openssl\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
</Link>
<PostBuildEvent>
<Command>copy /Y $(SolutionDir)dependencies\openssl\bin\libeay32.dll $(TargetDir)libeay32.dll
copy /Y $(SolutionDir)dependencies\openssl\bin\ssleay32.dll $(TargetDir)ssleay32.dll</Command>
</PostBuildEvent>
<PostBuildEvent>
<Message>Copy required third-party libraries to target folder</Message>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="Config.hpp" />
<ClInclude Include="ConnectionPlasma.hpp" />
<ClInclude Include="ConnectionTheater.hpp" />
<ClInclude Include="dinput8.hpp" />
<ClInclude Include="ExecutableType.hpp" />
<ClInclude Include="ExitCode.hpp" />
<ClInclude Include="framework.hpp" />
<ClInclude Include="Hook.hpp" />
<ClInclude Include="HttpClient.hpp" />
<ClInclude Include="HttpHandler.hpp" />
<ClInclude Include="Packet.hpp" />
<ClInclude Include="PatchDNS.hpp" />
<ClInclude Include="PatchSSL.hpp" />
<ClInclude Include="pch.hpp" />
<ClInclude Include="Proxy.hpp" />
<ClInclude Include="ProxyCert.hpp" />
<ClInclude Include="ProxyHTTP.hpp" />
<ClInclude Include="ProxyTCP.hpp" />
<ClInclude Include="ProxyUDP.hpp" />
<ClInclude Include="Utils.hpp" />
<ClInclude Include="WebSocketClient.hpp" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="Config.cpp" />
<ClCompile Include="ConnectionPlasma.cpp" />
<ClCompile Include="ConnectionTheater.cpp" />
<ClCompile Include="dinput8.cpp" />
<ClCompile Include="dllmain.cpp" />
<ClCompile Include="Hook.cpp" />
<ClCompile Include="HttpClient.cpp" />
<ClCompile Include="HttpHandler.cpp" />
<ClCompile Include="Packet.cpp" />
<ClCompile Include="PatchDNS.cpp" />
<ClCompile Include="PatchSSL.cpp" />
<ClCompile Include="pch.cpp">
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="Proxy.cpp" />
<ClCompile Include="ProxyHTTP.cpp" />
<ClCompile Include="ProxyTCP.cpp" />
<ClCompile Include="ProxyUDP.cpp" />
<ClCompile Include="Utils.cpp" />
<ClCompile Include="WebSocketClient.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>