LightGBM.vcxproj 13.6 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ItemGroup Label="Projectconfigurations">
    <ProjectConfiguration Include="Debug_mpi|x64">
      <Configuration>Debug_mpi</Configuration>
      <Platform>x64</Platform>
    </ProjectConfiguration>
    <ProjectConfiguration Include="Debug|x64">
      <Configuration>Debug</Configuration>
      <Platform>x64</Platform>
    </ProjectConfiguration>
12
13
14
15
    <ProjectConfiguration Include="DLL|x64">
      <Configuration>DLL</Configuration>
      <Platform>x64</Platform>
    </ProjectConfiguration>
Guolin Ke's avatar
Guolin Ke committed
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
    <ProjectConfiguration Include="Release_mpi|x64">
      <Configuration>Release_mpi</Configuration>
      <Platform>x64</Platform>
    </ProjectConfiguration>
    <ProjectConfiguration Include="Release|x64">
      <Configuration>Release</Configuration>
      <Platform>x64</Platform>
    </ProjectConfiguration>
  </ItemGroup>
  <PropertyGroup Label="Globals">
    <ProjectGuid>{F31C0B5D-715E-4953-AA1B-8D2AEEE4344C}</ProjectGuid>
    <RootNamespace>LightGBM</RootNamespace>
    <SccProjectName>SAK</SccProjectName>
    <SccAuxPath>SAK</SccAuxPath>
    <SccLocalPath>SAK</SccLocalPath>
    <SccProvider>SAK</SccProvider>
    <ProjectName>LightGBM</ProjectName>
    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
  </PropertyGroup>
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug_mpi|x64'">
Guolin Ke's avatar
Guolin Ke committed
37
    <PlatformToolset>v120</PlatformToolset>
Guolin Ke's avatar
Guolin Ke committed
38
39
  </PropertyGroup>
  <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
Guolin Ke's avatar
Guolin Ke committed
40
    <PlatformToolset>v120</PlatformToolset>
Guolin Ke's avatar
Guolin Ke committed
41
  </PropertyGroup>
42
43
44
45
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL|x64'" Label="Configuration">
    <PlatformToolset>v120</PlatformToolset>
    <ConfigurationType>DynamicLibrary</ConfigurationType>
  </PropertyGroup>
Guolin Ke's avatar
Guolin Ke committed
46
  <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
Guolin Ke's avatar
Guolin Ke committed
47
    <PlatformToolset>v120</PlatformToolset>
Guolin Ke's avatar
Guolin Ke committed
48
49
  </PropertyGroup>
  <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release_mpi|x64'">
Guolin Ke's avatar
Guolin Ke committed
50
    <PlatformToolset>v120</PlatformToolset>
Guolin Ke's avatar
Guolin Ke committed
51
52
53
54
55
56
57
58
59
60
61
62
63
64
  </PropertyGroup>
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  <ImportGroup Label="ExtensionSettings">
  </ImportGroup>
  <ImportGroup Condition="'$(configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  </ImportGroup>
  <ImportGroup Condition="'$(configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  </ImportGroup>
  <PropertyGroup Label="UserMacros" />
  <PropertyGroup Condition="'$(configuration)|$(Platform)'=='Debug|x64'">
    <IncludePath>..\include;$(VC_IncludePath);$(WindowsSDK_IncludePath);</IncludePath>
    <LibraryPath>$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);</LibraryPath>
65
    <TargetName>lightgbm</TargetName>
Guolin Ke's avatar
Guolin Ke committed
66
67
68
69
  </PropertyGroup>
  <PropertyGroup Condition="'$(configuration)|$(Platform)'=='Debug_mpi|x64'">
    <IncludePath>$(MSMPI_INC);..\include;$(VC_IncludePath);$(WindowsSDK_IncludePath);</IncludePath>
    <LibraryPath>$(MSMPI_LIB64);$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);</LibraryPath>
70
    <TargetName>lightgbm</TargetName>
Guolin Ke's avatar
Guolin Ke committed
71
72
73
74
  </PropertyGroup>
  <PropertyGroup Condition="'$(configuration)|$(Platform)'=='Release|x64'">
    <IncludePath>..\include;$(VC_IncludePath);$(WindowsSDK_IncludePath);</IncludePath>
    <LibraryPath>$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);</LibraryPath>
75
    <TargetName>lightgbm</TargetName>
Guolin Ke's avatar
Guolin Ke committed
76
77
78
79
  </PropertyGroup>
  <PropertyGroup Condition="'$(configuration)|$(Platform)'=='Release_mpi|x64'">
    <IncludePath>$(MSMPI_INC);..\include;$(VC_IncludePath);$(WindowsSDK_IncludePath);</IncludePath>
    <LibraryPath>$(MSMPI_LIB64);$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);</LibraryPath>
80
    <TargetName>lightgbm</TargetName>
Guolin Ke's avatar
Guolin Ke committed
81
  </PropertyGroup>
82
83
84
85
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL|x64'">
    <IncludePath>..\include;$(VC_IncludePath);$(WindowsSDK_IncludePath);</IncludePath>
    <TargetName>lib_lightgbm</TargetName>
  </PropertyGroup>
Guolin Ke's avatar
Guolin Ke committed
86
87
88
89
90
91
92
93
94
95
96
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_mpi|x64'">
    <ClCompile>
      <PreprocessorDefinitions>USE_MPI</PreprocessorDefinitions>
      <WarningLevel>Level4</WarningLevel>
      <OpenMPSupport>true</OpenMPSupport>
      <FavorSizeOrSpeed>Neither</FavorSizeOrSpeed>
      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
      <IntrinsicFunctions>false</IntrinsicFunctions>
      <EnableFiberSafeOptimizations>false</EnableFiberSafeOptimizations>
      <WholeProgramOptimization>false</WholeProgramOptimization>
      <Optimization>Disabled</Optimization>
Guolin Ke's avatar
Guolin Ke committed
97
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
Guolin Ke's avatar
Guolin Ke committed
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
    </ClCompile>
    <Link>
      <AdditionalLibraryDirectories>
      </AdditionalLibraryDirectories>
    </Link>
    <Link>
      <AdditionalDependencies>msmpi.lib</AdditionalDependencies>
    </Link>
  </ItemDefinitionGroup>
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
    <ClCompile>
      <PreprocessorDefinitions>USE_SOCKET</PreprocessorDefinitions>
      <WarningLevel>Level4</WarningLevel>
      <OpenMPSupport>true</OpenMPSupport>
      <FavorSizeOrSpeed>Neither</FavorSizeOrSpeed>
      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
      <IntrinsicFunctions>false</IntrinsicFunctions>
      <EnableFiberSafeOptimizations>false</EnableFiberSafeOptimizations>
      <WholeProgramOptimization>false</WholeProgramOptimization>
      <Optimization>Disabled</Optimization>
Guolin Ke's avatar
Guolin Ke committed
118
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
Guolin Ke's avatar
Guolin Ke committed
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
    </ClCompile>
    <Link>
      <AdditionalDependencies>
      </AdditionalDependencies>
    </Link>
  </ItemDefinitionGroup>
  <ItemDefinitionGroup Condition="'$(configuration)|$(Platform)'=='Release_mpi|x64'">
    <ClCompile>
      <WarningLevel>Level4</WarningLevel>
      <Optimization>MaxSpeed</Optimization>
      <FunctionLevelLinking>true</FunctionLevelLinking>
      <IntrinsicFunctions>true</IntrinsicFunctions>
      <SDLCheck>true</SDLCheck>
      <PreprocessorDefinitions>USE_MPI;_MBCS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
      <OpenMPSupport>true</OpenMPSupport>
      <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
      <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
      <EnableFiberSafeOptimizations>false</EnableFiberSafeOptimizations>
      <WholeProgramOptimization>true</WholeProgramOptimization>
      <OmitFramePointers>true</OmitFramePointers>
Guolin Ke's avatar
Guolin Ke committed
139
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
Guolin Ke's avatar
Guolin Ke committed
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
    </ClCompile>
    <Link>
      <AdditionalLibraryDirectories>
      </AdditionalLibraryDirectories>
    </Link>
    <Link>
      <GenerateDebugInformation>true</GenerateDebugInformation>
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
      <OptimizeReferences>true</OptimizeReferences>
      <AdditionalDependencies>msmpi.lib</AdditionalDependencies>
    </Link>
  </ItemDefinitionGroup>
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
    <ClCompile>
      <PreprocessorDefinitions>USE_SOCKET;_MBCS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
      <WarningLevel>Level4</WarningLevel>
      <OpenMPSupport>true</OpenMPSupport>
      <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
      <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
      <IntrinsicFunctions>true</IntrinsicFunctions>
      <EnableFiberSafeOptimizations>false</EnableFiberSafeOptimizations>
      <WholeProgramOptimization>true</WholeProgramOptimization>
Guolin Ke's avatar
Guolin Ke committed
162
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
Guolin Ke's avatar
Guolin Ke committed
163
164
165
166
167
168
169
170
      <OmitFramePointers>true</OmitFramePointers>
      <FunctionLevelLinking>true</FunctionLevelLinking>
    </ClCompile>
    <Link>
      <AdditionalDependencies />
      <OptimizeReferences>true</OptimizeReferences>
    </Link>
  </ItemDefinitionGroup>
171
172
173
174
175
176
177
178
179
180
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DLL|x64'">
    <ClCompile>
      <PreprocessorDefinitions>USE_SOCKET;_MBCS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
      <WarningLevel>Level4</WarningLevel>
      <OpenMPSupport>true</OpenMPSupport>
      <FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
      <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
      <IntrinsicFunctions>true</IntrinsicFunctions>
      <EnableFiberSafeOptimizations>false</EnableFiberSafeOptimizations>
      <WholeProgramOptimization>true</WholeProgramOptimization>
Guolin Ke's avatar
Guolin Ke committed
181
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
182
183
184
185
186
187
188
189
190
      <OmitFramePointers>true</OmitFramePointers>
      <FunctionLevelLinking>true</FunctionLevelLinking>
    </ClCompile>
    <Link>
      <AdditionalDependencies>
      </AdditionalDependencies>
      <OptimizeReferences>true</OptimizeReferences>
    </Link>
  </ItemDefinitionGroup>
Guolin Ke's avatar
Guolin Ke committed
191
192
193
194
195
  <ItemGroup>
    <ClInclude Include="..\include\LightGBM\application.h" />
    <ClInclude Include="..\include\LightGBM\bin.h" />
    <ClInclude Include="..\include\LightGBM\boosting.h" />
    <ClInclude Include="..\include\LightGBM\config.h" />
Guolin Ke's avatar
Guolin Ke committed
196
    <ClInclude Include="..\include\LightGBM\c_api.h" />
Guolin Ke's avatar
Guolin Ke committed
197
    <ClInclude Include="..\include\LightGBM\dataset.h" />
Guolin Ke's avatar
Guolin Ke committed
198
    <ClInclude Include="..\include\LightGBM\dataset_loader.h" />
Guolin Ke's avatar
Guolin Ke committed
199
    <ClInclude Include="..\include\LightGBM\feature_group.h" />
Guolin Ke's avatar
Guolin Ke committed
200
201
202
203
204
205
206
207
208
    <ClInclude Include="..\include\LightGBM\meta.h" />
    <ClInclude Include="..\include\LightGBM\metric.h" />
    <ClInclude Include="..\include\LightGBM\network.h" />
    <ClInclude Include="..\include\LightGBM\objective_function.h" />
    <ClInclude Include="..\include\LightGBM\tree.h" />
    <ClInclude Include="..\include\LightGBM\tree_learner.h" />
    <ClInclude Include="..\include\LightGBM\utils\array_args.h" />
    <ClInclude Include="..\include\LightGBM\utils\common.h" />
    <ClInclude Include="..\include\LightGBM\utils\log.h" />
209
    <ClInclude Include="..\include\LightGBM\utils\openmp_wrapper.h" />
Guolin Ke's avatar
Guolin Ke committed
210
211
212
213
214
215
    <ClInclude Include="..\include\LightGBM\utils\pipeline_reader.h" />
    <ClInclude Include="..\include\LightGBM\utils\random.h" />
    <ClInclude Include="..\include\LightGBM\utils\text_reader.h" />
    <ClInclude Include="..\include\LightGBM\utils\threading.h" />
    <ClInclude Include="..\src\application\predictor.hpp" />
    <ClInclude Include="..\src\boosting\gbdt.h" />
Guolin Ke's avatar
Guolin Ke committed
216
    <ClInclude Include="..\src\boosting\dart.hpp" />
Guolin Ke's avatar
Guolin Ke committed
217
    <ClInclude Include="..\src\boosting\goss.hpp" />
Guolin Ke's avatar
Guolin Ke committed
218
219
    <ClInclude Include="..\src\boosting\score_updater.hpp" />
    <ClInclude Include="..\src\io\dense_bin.hpp" />
Guolin Ke's avatar
Guolin Ke committed
220
    <ClInclude Include="..\src\io\dense_nbits_bin.hpp" />
Guolin Ke's avatar
Guolin Ke committed
221
222
223
224
    <ClInclude Include="..\src\io\ordered_sparse_bin.hpp" />
    <ClInclude Include="..\src\io\parser.hpp" />
    <ClInclude Include="..\src\io\sparse_bin.hpp" />
    <ClInclude Include="..\src\metric\binary_metric.hpp" />
225
    <ClInclude Include="..\src\metric\map_metric.hpp" />
Guolin Ke's avatar
Guolin Ke committed
226
227
    <ClInclude Include="..\src\metric\rank_metric.hpp" />
    <ClInclude Include="..\src\metric\regression_metric.hpp" />
228
    <ClInclude Include="..\src\metric\multiclass_metric.hpp" />
Guolin Ke's avatar
Guolin Ke committed
229
230
231
232
233
    <ClInclude Include="..\src\network\linkers.h" />
    <ClInclude Include="..\src\network\socket_wrapper.hpp" />
    <ClInclude Include="..\src\objective\binary_objective.hpp" />
    <ClInclude Include="..\src\objective\rank_objective.hpp" />
    <ClInclude Include="..\src\objective\regression_objective.hpp" />
234
    <ClInclude Include="..\src\objective\multiclass_objective.hpp" />
Guolin Ke's avatar
Guolin Ke committed
235
236
237
238
239
240
241
242
243
244
245
    <ClInclude Include="..\src\treelearner\data_partition.hpp" />
    <ClInclude Include="..\src\treelearner\feature_histogram.hpp" />
    <ClInclude Include="..\src\treelearner\leaf_splits.hpp" />
    <ClInclude Include="..\src\treelearner\parallel_tree_learner.h" />
    <ClInclude Include="..\src\treelearner\serial_tree_learner.h" />
    <ClInclude Include="..\src\treelearner\split_info.hpp" />
  </ItemGroup>
  <ItemGroup>
    <ClCompile Include="..\src\application\application.cpp" />
    <ClCompile Include="..\src\boosting\boosting.cpp" />
    <ClCompile Include="..\src\boosting\gbdt.cpp" />
Guolin Ke's avatar
Guolin Ke committed
246
    <ClCompile Include="..\src\c_api.cpp" />
Guolin Ke's avatar
Guolin Ke committed
247
248
249
    <ClCompile Include="..\src\io\bin.cpp" />
    <ClCompile Include="..\src\io\config.cpp" />
    <ClCompile Include="..\src\io\dataset.cpp" />
Guolin Ke's avatar
Guolin Ke committed
250
    <ClCompile Include="..\src\io\dataset_loader.cpp" />
Guolin Ke's avatar
Guolin Ke committed
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
    <ClCompile Include="..\src\io\metadata.cpp" />
    <ClCompile Include="..\src\io\parser.cpp" />
    <ClCompile Include="..\src\io\tree.cpp" />
    <ClCompile Include="..\src\metric\dcg_calculator.cpp" />
    <ClCompile Include="..\src\metric\metric.cpp" />
    <ClCompile Include="..\src\network\network.cpp" />
    <ClCompile Include="..\src\network\linkers_mpi.cpp" />
    <ClCompile Include="..\src\network\linkers_socket.cpp" />
    <ClCompile Include="..\src\network\linker_topo.cpp" />
    <ClCompile Include="..\src\objective\objective_function.cpp" />
    <ClCompile Include="..\src\main.cpp" />
    <ClCompile Include="..\src\treelearner\data_parallel_tree_learner.cpp" />
    <ClCompile Include="..\src\treelearner\feature_parallel_tree_learner.cpp" />
    <ClCompile Include="..\src\treelearner\serial_tree_learner.cpp" />
    <ClCompile Include="..\src\treelearner\tree_learner.cpp" />
Guolin Ke's avatar
Guolin Ke committed
266
    <ClCompile Include="..\src\treelearner\voting_parallel_tree_learner.cpp" />
Guolin Ke's avatar
Guolin Ke committed
267
268
269
270
271
  </ItemGroup>
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  <ImportGroup Label="ExtensionTargets">
  </ImportGroup>
</Project>