LightGBM.vcxproj 16.8 KB
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
Guolin Ke's avatar
Guolin Ke committed
2
3
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ItemGroup Label="Projectconfigurations">
Guolin Ke's avatar
Guolin Ke committed
4
5
6
7
    <ProjectConfiguration Include="Debug_DLL|x64">
      <Configuration>Debug_DLL</Configuration>
      <Platform>x64</Platform>
    </ProjectConfiguration>
Guolin Ke's avatar
Guolin Ke committed
8
9
10
11
12
13
14
15
    <ProjectConfiguration Include="Debug_mpi|x64">
      <Configuration>Debug_mpi</Configuration>
      <Platform>x64</Platform>
    </ProjectConfiguration>
    <ProjectConfiguration Include="Debug|x64">
      <Configuration>Debug</Configuration>
      <Platform>x64</Platform>
    </ProjectConfiguration>
16
17
18
19
    <ProjectConfiguration Include="DLL|x64">
      <Configuration>DLL</Configuration>
      <Platform>x64</Platform>
    </ProjectConfiguration>
Guolin Ke's avatar
Guolin Ke committed
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>
37
    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
Guolin Ke's avatar
Guolin Ke committed
38
39
40
  </PropertyGroup>
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug_mpi|x64'">
41
    <PlatformToolset>v140</PlatformToolset>
Guolin Ke's avatar
Guolin Ke committed
42
43
  </PropertyGroup>
  <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
44
    <PlatformToolset>v140</PlatformToolset>
Guolin Ke's avatar
Guolin Ke committed
45
  </PropertyGroup>
46
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DLL|x64'" Label="Configuration">
47
    <PlatformToolset>v140</PlatformToolset>
48
49
    <ConfigurationType>DynamicLibrary</ConfigurationType>
  </PropertyGroup>
Guolin Ke's avatar
Guolin Ke committed
50
  <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
51
    <PlatformToolset>v140</PlatformToolset>
Guolin Ke's avatar
Guolin Ke committed
52
  </PropertyGroup>
Guolin Ke's avatar
Guolin Ke committed
53
54
55
56
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_DLL|x64'" Label="Configuration">
    <PlatformToolset>v140</PlatformToolset>
    <ConfigurationType>DynamicLibrary</ConfigurationType>
  </PropertyGroup>
Guolin Ke's avatar
Guolin Ke committed
57
  <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release_mpi|x64'">
58
    <PlatformToolset>v140</PlatformToolset>
Guolin Ke's avatar
Guolin Ke committed
59
60
61
62
63
64
65
  </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>
Guolin Ke's avatar
Guolin Ke committed
66
67
68
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_DLL|x64'" Label="PropertySheets">
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  </ImportGroup>
Guolin Ke's avatar
Guolin Ke committed
69
70
71
72
73
74
75
  <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>
76
    <TargetName>lightgbm</TargetName>
Guolin Ke's avatar
Guolin Ke committed
77
  </PropertyGroup>
Guolin Ke's avatar
Guolin Ke committed
78
79
80
81
82
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_DLL|x64'">
    <IncludePath>..\include;$(VC_IncludePath);$(WindowsSDK_IncludePath);</IncludePath>
    <LibraryPath>$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);</LibraryPath>
    <TargetName>lib_lightgbm</TargetName>
  </PropertyGroup>
Guolin Ke's avatar
Guolin Ke committed
83
84
85
  <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>
86
    <TargetName>lightgbm</TargetName>
Guolin Ke's avatar
Guolin Ke committed
87
88
89
90
  </PropertyGroup>
  <PropertyGroup Condition="'$(configuration)|$(Platform)'=='Release|x64'">
    <IncludePath>..\include;$(VC_IncludePath);$(WindowsSDK_IncludePath);</IncludePath>
    <LibraryPath>$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);</LibraryPath>
91
    <TargetName>lightgbm</TargetName>
Guolin Ke's avatar
Guolin Ke committed
92
93
94
95
  </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>
96
    <TargetName>lightgbm</TargetName>
Guolin Ke's avatar
Guolin Ke committed
97
  </PropertyGroup>
98
99
100
101
  <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
102
103
104
105
106
107
108
109
110
111
112
  <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
113
      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
114
      <MultiProcessorCompilation>true</MultiProcessorCompilation>
Guolin Ke's avatar
Guolin Ke committed
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
    </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
135
      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
Guolin Ke's avatar
Guolin Ke committed
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
      <MultiProcessorCompilation>true</MultiProcessorCompilation>
    </ClCompile>
    <Link>
      <AdditionalDependencies>
      </AdditionalDependencies>
    </Link>
  </ItemDefinitionGroup>
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_DLL|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>
      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
155
      <MultiProcessorCompilation>true</MultiProcessorCompilation>
Guolin Ke's avatar
Guolin Ke committed
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
    </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>
174
      <WholeProgramOptimization>false</WholeProgramOptimization>
Guolin Ke's avatar
Guolin Ke committed
175
      <OmitFramePointers>true</OmitFramePointers>
Guolin Ke's avatar
Guolin Ke committed
176
      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
177
      <MultiProcessorCompilation>true</MultiProcessorCompilation>
Guolin Ke's avatar
Guolin Ke committed
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
    </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>
199
      <WholeProgramOptimization>false</WholeProgramOptimization>
Guolin Ke's avatar
Guolin Ke committed
200
      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
Guolin Ke's avatar
Guolin Ke committed
201
202
      <OmitFramePointers>true</OmitFramePointers>
      <FunctionLevelLinking>true</FunctionLevelLinking>
203
      <MultiProcessorCompilation>true</MultiProcessorCompilation>
Guolin Ke's avatar
Guolin Ke committed
204
205
206
207
208
209
    </ClCompile>
    <Link>
      <AdditionalDependencies />
      <OptimizeReferences>true</OptimizeReferences>
    </Link>
  </ItemDefinitionGroup>
210
211
212
213
214
215
216
217
218
  <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>
219
      <WholeProgramOptimization>false</WholeProgramOptimization>
Guolin Ke's avatar
Guolin Ke committed
220
      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
221
222
      <OmitFramePointers>true</OmitFramePointers>
      <FunctionLevelLinking>true</FunctionLevelLinking>
223
      <MultiProcessorCompilation>true</MultiProcessorCompilation>
224
225
226
227
228
229
230
    </ClCompile>
    <Link>
      <AdditionalDependencies>
      </AdditionalDependencies>
      <OptimizeReferences>true</OptimizeReferences>
    </Link>
  </ItemDefinitionGroup>
Guolin Ke's avatar
Guolin Ke committed
231
232
233
234
235
  <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
236
    <ClInclude Include="..\include\LightGBM\c_api.h" />
Guolin Ke's avatar
Guolin Ke committed
237
    <ClInclude Include="..\include\LightGBM\dataset.h" />
Guolin Ke's avatar
Guolin Ke committed
238
    <ClInclude Include="..\include\LightGBM\dataset_loader.h" />
Guolin Ke's avatar
Guolin Ke committed
239
    <ClInclude Include="..\include\LightGBM\feature_group.h" />
240
    <ClInclude Include="..\include\LightGBM\lightgbm_R.h" />
Guolin Ke's avatar
Guolin Ke committed
241
242
243
244
    <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" />
cbecker's avatar
cbecker committed
245
    <ClInclude Include="..\include\LightGBM\prediction_early_stop.h" />
246
    <ClInclude Include="..\include\LightGBM\R_object_helper.h" />
Guolin Ke's avatar
Guolin Ke committed
247
248
249
250
    <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" />
Guolin Ke's avatar
Guolin Ke committed
251
    <ClInclude Include="..\include\LightGBM\utils\file_io.h" />
252
    <ClInclude Include="..\include\LightGBM\utils\json11.h" />
Guolin Ke's avatar
Guolin Ke committed
253
    <ClInclude Include="..\include\LightGBM\utils\log.h" />
254
    <ClInclude Include="..\include\LightGBM\utils\openmp_wrapper.h" />
Guolin Ke's avatar
Guolin Ke committed
255
256
257
258
259
260
    <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
261
    <ClInclude Include="..\src\boosting\dart.hpp" />
Guolin Ke's avatar
Guolin Ke committed
262
    <ClInclude Include="..\src\boosting\goss.hpp" />
263
    <ClInclude Include="..\src\boosting\rf.hpp" />
Guolin Ke's avatar
Guolin Ke committed
264
265
    <ClInclude Include="..\src\boosting\score_updater.hpp" />
    <ClInclude Include="..\src\io\dense_bin.hpp" />
266
267
    <ClInclude Include="..\src\io\multi_val_dense_bin.hpp" />
    <ClInclude Include="..\src\io\multi_val_sparse_bin.hpp" />
Guolin Ke's avatar
Guolin Ke committed
268
269
270
    <ClInclude Include="..\src\io\parser.hpp" />
    <ClInclude Include="..\src\io\sparse_bin.hpp" />
    <ClInclude Include="..\src\metric\binary_metric.hpp" />
271
    <ClInclude Include="..\src\metric\map_metric.hpp" />
Guolin Ke's avatar
Guolin Ke committed
272
273
    <ClInclude Include="..\src\metric\rank_metric.hpp" />
    <ClInclude Include="..\src\metric\regression_metric.hpp" />
274
    <ClInclude Include="..\src\metric\multiclass_metric.hpp" />
Guolin Ke's avatar
Guolin Ke committed
275
    <ClInclude Include="..\src\metric\xentropy_metric.hpp" />
Guolin Ke's avatar
Guolin Ke committed
276
277
278
279
280
    <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" />
281
    <ClInclude Include="..\src\objective\multiclass_objective.hpp" />
Guolin Ke's avatar
Guolin Ke committed
282
    <ClInclude Include="..\src\objective\xentropy_objective.hpp" />
283
    <ClInclude Include="..\src\treelearner\col_sampler.hpp" />
284
    <ClInclude Include="..\src\treelearner\cost_effective_gradient_boosting.hpp" />
Guolin Ke's avatar
Guolin Ke committed
285
286
287
288
289
290
291
292
293
294
295
    <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" />
wxchan's avatar
wxchan committed
296
    <ClCompile Include="..\src\boosting\gbdt_model_text.cpp" />
Guolin Ke's avatar
Guolin Ke committed
297
    <ClCompile Include="..\src\boosting\gbdt_prediction.cpp" />
cbecker's avatar
cbecker committed
298
    <ClCompile Include="..\src\boosting\prediction_early_stop.cpp" />
Guolin Ke's avatar
Guolin Ke committed
299
    <ClCompile Include="..\src\c_api.cpp" />
Guolin Ke's avatar
Guolin Ke committed
300
301
    <ClCompile Include="..\src\io\bin.cpp" />
    <ClCompile Include="..\src\io\config.cpp" />
Guolin Ke's avatar
Guolin Ke committed
302
    <ClCompile Include="..\src\io\config_auto.cpp" />
Guolin Ke's avatar
Guolin Ke committed
303
    <ClCompile Include="..\src\io\dataset.cpp" />
Guolin Ke's avatar
Guolin Ke committed
304
    <ClCompile Include="..\src\io\dataset_loader.cpp" />
Guolin Ke's avatar
Guolin Ke committed
305
    <ClCompile Include="..\src\io\file_io.cpp" />
Guolin Ke's avatar
Guolin Ke committed
306
    <ClCompile Include="..\src\io\json11.cpp" />
Guolin Ke's avatar
Guolin Ke committed
307
308
309
    <ClCompile Include="..\src\io\metadata.cpp" />
    <ClCompile Include="..\src\io\parser.cpp" />
    <ClCompile Include="..\src\io\tree.cpp" />
310
    <ClCompile Include="..\src\lightgbm_R.cpp" />
Guolin Ke's avatar
Guolin Ke committed
311
312
313
314
315
316
317
318
319
320
321
322
    <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
323
    <ClCompile Include="..\src\treelearner\voting_parallel_tree_learner.cpp" />
Guolin Ke's avatar
Guolin Ke committed
324
325
326
327
  </ItemGroup>
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  <ImportGroup Label="ExtensionTargets">
  </ImportGroup>
328
</Project>