forked from zer0condition/ReverseKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReverseKit.vcxproj
111 lines (111 loc) · 5.24 KB
/
ReverseKit.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
110
111
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>16.0</VCProjectVersion>
<Keyword>Win32Proj</Keyword>
<ProjectGuid>{65168e17-b306-407f-865a-3f130984bd1e}</ProjectGuid>
<RootNamespace>ReverseKit</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" 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">
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<IncludePath>Includes/;Hooks/;ImGui/;Imports/;Instrumentation/;Menu/;ReverseLib/;Threads/;Window/;$(IncludePath)</IncludePath>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>TurnOffAllWarnings</WarningLevel>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EntryPointSymbol>
</EntryPointSymbol>
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="Hooks\SetHooks.cpp" />
<ClCompile Include="ImGui\imgui.cpp" />
<ClCompile Include="ImGui\imgui_demo.cpp" />
<ClCompile Include="ImGui\imgui_draw.cpp" />
<ClCompile Include="ImGui\imgui_impl_dx9.cpp" />
<ClCompile Include="ImGui\imgui_impl_win32.cpp" />
<ClCompile Include="ImGui\imgui_tables.cpp" />
<ClCompile Include="ImGui\imgui_widgets.cpp" />
<ClCompile Include="Imports\Imports.cpp" />
<ClCompile Include="Instrumentation\InstrumentationCallback.cpp" />
<ClCompile Include="Menu\Menu.cpp" />
<ClCompile Include="ReverseKit.cpp" />
<ClCompile Include="ReverseLib\ReverseHook.cpp" />
<ClCompile Include="Threads\Threads.cpp" />
<ClCompile Include="Window\D3DWindow.cpp" />
<ClCompile Include="Window\ImGuiSetup.cpp" />
<ClCompile Include="Window\Render.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="Hooks\CheckRemoteDebuggerPresent.h" />
<ClInclude Include="Hooks\CreateProcessInternalW.h" />
<ClInclude Include="Hooks\InternetOpenUrlW.h" />
<ClInclude Include="Hooks\IsDebuggerPresent.h" />
<ClInclude Include="Hooks\NtCreateThreadEx.h" />
<ClInclude Include="Hooks\SetHooks.h" />
<ClInclude Include="Hooks\URLDownloadToFileA.h" />
<ClInclude Include="ImGui\imconfig.h" />
<ClInclude Include="ImGui\imgui.h" />
<ClInclude Include="ImGui\imgui_impl_dx9.h" />
<ClInclude Include="ImGui\imgui_impl_win32.h" />
<ClInclude Include="ImGui\imgui_internal.h" />
<ClInclude Include="ImGui\imstb_rectpack.h" />
<ClInclude Include="ImGui\imstb_textedit.h" />
<ClInclude Include="ImGui\imstb_truetype.h" />
<ClInclude Include="Imports\Imports.h" />
<ClInclude Include="Includes\Includes.h" />
<ClInclude Include="Instrumentation\InstrumentationCallback.h" />
<ClInclude Include="Menu\Menu.h" />
<ClInclude Include="ReverseLib\ReverseHook.h" />
<ClInclude Include="Threads\Threads.h" />
<ClInclude Include="Window\D3DWindow.h" />
<ClInclude Include="Window\ImGuiSetup.h" />
<ClInclude Include="Window\Render.h" />
</ItemGroup>
<ItemGroup>
<Library Include="Window\Lib\d3dx9.lib" />
</ItemGroup>
<ItemGroup>
<MASM Include="Instrumentation\Bridge.asm" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
</ImportGroup>
</Project>