-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTWCMOD.vcxproj
More file actions
55 lines (55 loc) · 2.3 KB
/
Copy pathTWCMOD.vcxproj
File metadata and controls
55 lines (55 loc) · 2.3 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="Globals">
<ProjectGuid>{8AAC31AA-C15C-4875-815A-7EF085D6C1A1}</ProjectGuid>
</PropertyGroup>
<PropertyGroup Label="Globals">
<RootNamespace>TWCMOD</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<ConfigurationType>DynamicLibrary</ConfigurationType>
<TargetName>TWCMOD</TargetName>
</PropertyGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(SolutionDir)TWCMOD.props" />
</ImportGroup>
<ItemDefinitionGroup>
<Link>
<SubSystem>Windows</SubSystem>
<ModuleDefinitionFile>$(SolutionDir)src\TWCMOD\TWCMOD.def</ModuleDefinitionFile>
<AdditionalDependencies>xxhash.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<ClCompile>
<PreprocessorDefinitions>_TWCMOD_IS_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="src\libs\fmt\src\format.cc" />
<ClCompile Include="src\libs\fmt\src\os.cc" />
<ClCompile Include="src\TWCMOD\breakpoint.cpp" />
<ClCompile Include="src\TWCMOD\Games\th07.cpp" />
<ClCompile Include="src\TWCMOD\Games\th08.cpp" />
<ClCompile Include="src\TWCMOD\Games\th128.cpp" />
<ClCompile Include="src\TWCMOD\Games\th17.cpp" />
<ClCompile Include="src\TWCMOD\Games\th18.cpp" />
<ClCompile Include="src\TWCMOD\Games\th19.cpp" />
<ClCompile Include="src\TWCMOD\Games\th_common.cpp" />
<ClCompile Include="src\TWCMOD\identify.cpp" />
<ClCompile Include="src\TWCMOD\init.cpp" />
<ClCompile Include="src\TWCMOD\log.cpp" />
<ClCompile Include="src\TWCMOD\sock.cpp" />
</ItemGroup>
<ItemGroup>
<None Include="src\TWCMOD\TWCMOD.def" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\libs\util.h" />
<ClInclude Include="src\TWCMOD\breakpoint.h" />
<ClInclude Include="src\TWCMOD\commons.h" />
<ClInclude Include="src\TWCMOD\Games\th_common.h" />
<ClInclude Include="src\TWCMOD\identify.h" />
<ClInclude Include="src\TWCMOD\log.h" />
<ClInclude Include="src\TWCMOD\sock.h" />
<ClInclude Include="src\TWCMOD\util.h" />
</ItemGroup>
</Project>