blob: 642c3291d8ee2f0481472de83a17169712111e80 (
plain)
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
|
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectName>mir_core</ProjectName>
<ProjectGuid>{D9EFEA4B-B817-4DE1-BD62-68A5DB8F5F60}</ProjectGuid>
</PropertyGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(ProjectDir)..\..\build\vc.common\lib.props" />
</ImportGroup>
<ItemDefinitionGroup>
<ClCompile>
<PreprocessorDefinitions Condition="'$(Configuration)'=='Debug'">MIR_CORE_EXPORTS;DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)'=='Release'">MIR_CORE_EXPORTS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalOptions>/ignore:4197 %(AdditionalOptions)</AdditionalOptions>
<ModuleDefinitionFile Condition="'$(Platform)'=='Win32'">src/mir_core.def</ModuleDefinitionFile>
<ModuleDefinitionFile Condition="'$(Platform)'=='x64'">src/mir_core64.def</ModuleDefinitionFile>
</Link>
<PreBuildEvent>
<Command>..\..\build\make_ver.bat</Command>
</PreBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="src\binbuffer.cpp" />
<ClCompile Include="src\bitmaps.cpp" />
<ClCompile Include="src\CCtrlBase.cpp" />
<ClCompile Include="src\CCtrlButton.cpp" />
<ClCompile Include="src\CCtrlCheck.cpp" />
<ClCompile Include="src\CCtrlClc.cpp" />
<ClCompile Include="src\CCtrlCombo.cpp" />
<ClCompile Include="src\CCtrlData.cpp" />
<ClCompile Include="src\cctrldate.cpp" />
<ClCompile Include="src\CCtrlEdit.cpp" />
<ClCompile Include="src\CCtrlHyperlink.cpp" />
<ClCompile Include="src\CCtrlLabel.cpp" />
<ClCompile Include="src\CCtrlListBox.cpp" />
<ClCompile Include="src\CCtrlListView.cpp" />
<ClCompile Include="src\CCtrlMButton.cpp" />
<ClCompile Include="src\CCtrlPages.cpp" />
<ClCompile Include="src\CCtrlRichEdit.cpp" />
<ClCompile Include="src\CCtrlSpin.cpp" />
<ClCompile Include="src\CCtrlTreeOpts.cpp" />
<ClCompile Include="src\CCtrlTreeView.cpp" />
<ClCompile Include="src\CDbLink.cpp" />
<ClCompile Include="src\CDlgBase.cpp" />
<ClCompile Include="src\cmdline.cpp" />
<ClCompile Include="src\colourpicker.cpp" />
<ClCompile Include="src\CProgress.cpp" />
<ClCompile Include="src\CSplitter.cpp" />
<ClCompile Include="src\CTimer.cpp" />
<ClCompile Include="src\db.cpp" />
<ClCompile Include="src\http.cpp" />
<ClCompile Include="src\hyperlink.cpp" />
<ClCompile Include="src\icons.cpp" />
<ClCompile Include="src\langpack.cpp" />
<ClCompile Include="src\lists.cpp" />
<ClCompile Include="src\locks.cpp" />
<ClCompile Include="src\logger.cpp" />
<ClCompile Include="src\md5.cpp" />
<ClCompile Include="src\memory.cpp" />
<ClCompile Include="src\miranda.cpp" />
<ClCompile Include="src\modules.cpp" />
<ClCompile Include="src\mstring.cpp" />
<ClCompile Include="src\openurl.cpp" />
<ClCompile Include="src\path.cpp" />
<ClCompile Include="src\resizer.cpp" />
<ClCompile Include="src\sha1.cpp" />
<ClCompile Include="src\sha256.cpp" />
<ClCompile Include="src\stdafx.cxx">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\subclass.cpp" />
<ClCompile Include="src\threads.cpp" />
<ClCompile Include="src\timezones.cpp" />
<ClCompile Include="src\tinyxml2.cpp" />
<ClCompile Include="src\tinyxml2_utils.cpp" />
<ClCompile Include="src\utf.cpp" />
<ClCompile Include="src\utils.cpp" />
<ClCompile Include="src\windowlist.cpp" />
<ClCompile Include="src\winutil.cpp" />
<ClCompile Include="src\winver.cpp" />
<ClInclude Include="src\miranda.h" />
<ClInclude Include="src\stdafx.h" />
<ClInclude Include="src\tinyxml2.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\version.rc" />
</ItemGroup>
<ItemGroup>
<None Include="src\mir_core.def" />
<None Include="src\mir_core64.def" />
</ItemGroup>
</Project>
|