1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <Project DefaultTargets =" Build" ToolsVersion =" 15.0" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
+ <ItemGroup Label =" ProjectConfigurations" >
4
+ <ProjectConfiguration Include =" Debug|x64" >
5
+ <Configuration >Debug</Configuration >
6
+ <Platform >x64</Platform >
7
+ </ProjectConfiguration >
8
+ <ProjectConfiguration Include =" Release|x64" >
9
+ <Configuration >Release</Configuration >
10
+ <Platform >x64</Platform >
11
+ </ProjectConfiguration >
12
+ </ItemGroup >
13
+ <PropertyGroup Label =" Globals" >
14
+ <VCProjectVersion >16.0</VCProjectVersion >
15
+ <ProjectGuid >{AE0B7438-0B6E-497E-BE0C-117FE82D2770}</ProjectGuid >
16
+ <RootNamespace >addon_manager</RootNamespace >
17
+ <WindowsTargetPlatformVersion >10.0</WindowsTargetPlatformVersion >
18
+ <ProjectName >addon_manager</ProjectName >
19
+ </PropertyGroup >
20
+ <Import Project =" $(VCTargetsPath)\Microsoft.Cpp.Default.props" />
21
+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|x64'" Label =" Configuration" >
22
+ <ConfigurationType >DynamicLibrary</ConfigurationType >
23
+ <UseDebugLibraries >true</UseDebugLibraries >
24
+ <PlatformToolset >v142</PlatformToolset >
25
+ <CharacterSet >Unicode</CharacterSet >
26
+ </PropertyGroup >
27
+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|x64'" Label =" Configuration" >
28
+ <ConfigurationType >DynamicLibrary</ConfigurationType >
29
+ <UseDebugLibraries >false</UseDebugLibraries >
30
+ <PlatformToolset >v142</PlatformToolset >
31
+ <WholeProgramOptimization >true</WholeProgramOptimization >
32
+ <CharacterSet >Unicode</CharacterSet >
33
+ </PropertyGroup >
34
+ <Import Project =" $(VCTargetsPath)\Microsoft.Cpp.props" />
35
+ <ImportGroup Label =" ExtensionSettings" >
36
+ </ImportGroup >
37
+ <ImportGroup Label =" Shared" >
38
+ </ImportGroup >
39
+ <ImportGroup Label =" PropertySheets" Condition =" '$(Configuration)|$(Platform)'=='Debug|x64'" >
40
+ <Import Project =" $(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition =" exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label =" LocalAppDataPlatform" />
41
+ </ImportGroup >
42
+ <ImportGroup Label =" PropertySheets" Condition =" '$(Configuration)|$(Platform)'=='Release|x64'" >
43
+ <Import Project =" $(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition =" exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label =" LocalAppDataPlatform" />
44
+ </ImportGroup >
45
+ <PropertyGroup Label =" UserMacros" />
46
+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|x64'" >
47
+ <LinkIncremental >true</LinkIncremental >
48
+ <TargetName >gw2addon_$(ProjectName)</TargetName >
49
+ <OutDir >$(SolutionDir)bin\$(Platform)\$(Configuration)\addons\$(ProjectName)\</OutDir >
50
+ <IncludePath >$(ProjectDir)\dep\imgui;$(ProjectDir)\src;$(IncludePath);$(ProjectDir)\dep</IncludePath >
51
+ </PropertyGroup >
52
+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|x64'" >
53
+ <LinkIncremental >false</LinkIncremental >
54
+ <TargetName >gw2addon_$(ProjectName)</TargetName >
55
+ <OutDir >$(SolutionDir)bin\$(Platform)\$(Configuration)\addons\$(ProjectName)\</OutDir >
56
+ <IncludePath >$(ProjectDir)\dep\imgui;$(ProjectDir)\src;$(IncludePath);$(ProjectDir)\dep</IncludePath >
57
+ </PropertyGroup >
58
+ <ItemDefinitionGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|x64'" >
59
+ <ClCompile >
60
+ <PrecompiledHeader >Use</PrecompiledHeader >
61
+ <WarningLevel >Level3</WarningLevel >
62
+ <Optimization >Disabled</Optimization >
63
+ <SDLCheck >true</SDLCheck >
64
+ <PreprocessorDefinitions >_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions >
65
+ <ConformanceMode >true</ConformanceMode >
66
+ <ForcedIncludeFiles >stdafx.h</ForcedIncludeFiles >
67
+ </ClCompile >
68
+ <Link >
69
+ <SubSystem >Windows</SubSystem >
70
+ <GenerateDebugInformation >true</GenerateDebugInformation >
71
+ <ModuleDefinitionFile >Source.def</ModuleDefinitionFile >
72
+ </Link >
73
+ </ItemDefinitionGroup >
74
+ <ItemDefinitionGroup Condition =" '$(Configuration)|$(Platform)'=='Release|x64'" >
75
+ <ClCompile >
76
+ <PrecompiledHeader >Use</PrecompiledHeader >
77
+ <WarningLevel >Level3</WarningLevel >
78
+ <Optimization >MaxSpeed</Optimization >
79
+ <FunctionLevelLinking >true</FunctionLevelLinking >
80
+ <IntrinsicFunctions >true</IntrinsicFunctions >
81
+ <SDLCheck >true</SDLCheck >
82
+ <PreprocessorDefinitions >NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions >
83
+ <ConformanceMode >true</ConformanceMode >
84
+ <ForcedIncludeFiles >stdafx.h</ForcedIncludeFiles >
85
+ </ClCompile >
86
+ <Link >
87
+ <SubSystem >Windows</SubSystem >
88
+ <EnableCOMDATFolding >true</EnableCOMDATFolding >
89
+ <OptimizeReferences >true</OptimizeReferences >
90
+ <GenerateDebugInformation >true</GenerateDebugInformation >
91
+ <ModuleDefinitionFile >Source.def</ModuleDefinitionFile >
92
+ </Link >
93
+ </ItemDefinitionGroup >
94
+ <ItemGroup >
95
+ <ClInclude Include =" dep\imgui\imconfig.h" />
96
+ <ClInclude Include =" dep\imgui\imgui.h" />
97
+ <ClInclude Include =" dep\imgui\imgui_internal.h" />
98
+ <ClInclude Include =" src/stdafx.h" />
99
+ <ClInclude Include =" src/targetver.h" />
100
+ <ClInclude Include =" src\addon.h" />
101
+ <ClInclude Include =" src\Gui.h" />
102
+ <ClInclude Include =" src\Main.h" />
103
+ </ItemGroup >
104
+ <ItemGroup >
105
+ <ClCompile Include =" dep\imgui\imgui.cpp" />
106
+ <ClCompile Include =" dep\imgui\imgui_draw.cpp" />
107
+ <ClCompile Include =" src/stdafx.cpp" >
108
+ <PrecompiledHeader Condition =" '$(Configuration)|$(Platform)'=='Debug|x64'" >Create</PrecompiledHeader >
109
+ <PrecompiledHeader Condition =" '$(Configuration)|$(Platform)'=='Release|x64'" >Create</PrecompiledHeader >
110
+ </ClCompile >
111
+ <ClCompile Include =" src\addon.cpp" />
112
+ <ClCompile Include =" src\Gui.cpp" />
113
+ <ClCompile Include =" src\Main.cpp" />
114
+ </ItemGroup >
115
+ <ItemGroup >
116
+ <None Include =" Source.def" />
117
+ </ItemGroup >
118
+ <Import Project =" $(VCTargetsPath)\Microsoft.Cpp.targets" />
119
+ <ImportGroup Label =" ExtensionTargets" >
120
+ </ImportGroup >
121
+ </Project >
0 commit comments