forked from ION28/BLUESPAWN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommonLib.vcxproj
59 lines (59 loc) · 2.49 KB
/
CommonLib.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
<?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="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemDefinitionGroup>
<BuildLog>
<Path>$(SolutionDir)build\$(PlatformTarget)\$(Configuration)\$(MSBuildProjectName).log</Path>
</BuildLog>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="headers\common\DynamicLinker.h" />
<ClInclude Include="headers\common\Internals.h" />
<ClInclude Include="headers\common\StringUtils.h" />
<ClInclude Include="headers\common\Utils.h" />
<ClInclude Include="headers\common\wrappers.hpp" />
<ClInclude Include="resource.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="src\DynamicLinker.cpp" />
<ClCompile Include="src\StringUtils.cpp" />
<ClCompile Include="src\Utils.cpp" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="CommonLib.rc" />
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{25AE1D80-3E17-4E1D-BFB4-8AFB375EBAF1}</ProjectGuid>
<RootNamespace>CommonLib</RootNamespace>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="..\config\buildsettings.props" />
<Import Project="..\config\buildstructure.props" />
<Import Project="CommonLib.props" />
</ImportGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
</Project>