-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMultiPad.vcxproj
More file actions
125 lines (125 loc) · 5.13 KB
/
MultiPad.vcxproj
File metadata and controls
125 lines (125 loc) · 5.13 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?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>
<PropertyGroup Label="Globals">
<ProjectGuid>{320ae5f4-47f6-4a46-b6a9-abdf5e8c9f28}</ProjectGuid>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="RadVSProps\Windows.props" />
<Import Project="RadVSProps\Configuration.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Link>
<AdditionalDependencies>Comctl32.lib;Shlwapi.lib;$(CoreLibraryDependencies);%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<ClCompile>
<LanguageStandard>stdcpp17</LanguageStandard>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Link>
<AdditionalDependencies>Comctl32.lib;Shlwapi.lib;$(CoreLibraryDependencies);%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<ClCompile>
<LanguageStandard>stdcpp17</LanguageStandard>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Link>
<AdditionalDependencies>Comctl32.lib;Shlwapi.lib;$(CoreLibraryDependencies);%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<ClCompile>
<LanguageStandard>stdcpp17</LanguageStandard>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Link>
<AdditionalDependencies>Comctl32.lib;Shlwapi.lib;$(CoreLibraryDependencies);%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<ClCompile>
<LanguageStandard>stdcpp17</LanguageStandard>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="CommandStateChain.cpp" />
<ClCompile Include="EditPlus.cpp" />
<ClCompile Include="FileDialog.cpp" />
<ClCompile Include="GoToLineDlg.cpp" />
<ClCompile Include="MultiPad.cpp" />
<ClCompile Include="Rad\Dialog.cpp" />
<ClCompile Include="Rad\Log.cpp" />
<ClCompile Include="Rad\MDI.cpp" />
<ClCompile Include="Rad\MessageHandler.cpp" />
<ClCompile Include="Rad\RadFile.cpp" />
<ClCompile Include="Rad\RadTextFile.cpp" />
<ClCompile Include="Rad\Window.cpp" />
<ClCompile Include="Rad\WinError.cpp" />
<ClCompile Include="ShowMenuShortcutChain.cpp" />
<ClCompile Include="WinMain.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="CommandStateChain.h" />
<ClInclude Include="EditPlus.h" />
<ClInclude Include="GdiPlus.h" />
<ClInclude Include="GoToLineDlg.h" />
<ClInclude Include="Rad\ByteOrderMark.h" />
<ClInclude Include="Rad\byte_swap.h" />
<ClInclude Include="Rad\Convert.h" />
<ClInclude Include="Rad\Dialog.h" />
<ClInclude Include="Rad\Format.h" />
<ClInclude Include="Rad\Log.h" />
<ClInclude Include="Rad\MemoryPlus.h" />
<ClInclude Include="Rad\MDI.h" />
<ClInclude Include="Rad\MessageHandler.h" />
<ClInclude Include="Rad\NewDebug.h" />
<ClInclude Include="Rad\RadFile.h" />
<ClInclude Include="Rad\RadTextFile.h" />
<ClInclude Include="Rad\SourceLocation.h" />
<ClInclude Include="Rad\span.h" />
<ClInclude Include="Rad\Unicode.h" />
<ClInclude Include="Rad\Window.h" />
<ClInclude Include="Rad\Windowxx.h" />
<ClInclude Include="Rad\WinError.h" />
<ClInclude Include="RegUtils.h" />
<ClInclude Include="resource.h" />
<ClInclude Include="ShowMenuShortcutChain.h" />
<ClInclude Include="WinMainSetup.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="MultiPad.rc" />
</ItemGroup>
<ItemGroup>
<Image Include="res\MultiPad.ico" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets" />
</Project>