LightGBM.vcxproj 13.3 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
  <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>
    </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>
    </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>
      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
    </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>
      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
      <OmitFramePointers>true</OmitFramePointers>
      <FunctionLevelLinking>true</FunctionLevelLinking>
    </ClCompile>
    <Link>
      <AdditionalDependencies />
      <OptimizeReferences>true</OptimizeReferences>
    </Link>
  </ItemDefinitionGroup>
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
  <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>
      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
      <OmitFramePointers>true</OmitFramePointers>
      <FunctionLevelLinking>true</FunctionLevelLinking>
    </ClCompile>
    <Link>
      <AdditionalDependencies>
      </AdditionalDependencies>
      <OptimizeReferences>true</OptimizeReferences>
    </Link>
  </ItemDefinitionGroup>
Guolin Ke's avatar
Guolin Ke committed
189
190
191
192
193
  <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
194
    <ClInclude Include="..\include\LightGBM\c_api.h" />
Guolin Ke's avatar
Guolin Ke committed
195
    <ClInclude Include="..\include\LightGBM\dataset.h" />
Guolin Ke's avatar
Guolin Ke committed
196
    <ClInclude Include="..\include\LightGBM\dataset_loader.h" />
Guolin Ke's avatar
Guolin Ke committed
197
198
199
200
201
202
203
204
205
206
    <ClInclude Include="..\include\LightGBM\feature.h" />
    <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" />
207
    <ClInclude Include="..\include\LightGBM\utils\lru_pool.h" />
Guolin Ke's avatar
Guolin Ke committed
208
209
210
211
212
213
    <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" />
214
    <ClInclude Include="..\src\boosting\dart.h" />
Guolin Ke's avatar
Guolin Ke committed
215
216
217
218
219
220
221
222
    <ClInclude Include="..\src\boosting\score_updater.hpp" />
    <ClInclude Include="..\src\io\dense_bin.hpp" />
    <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" />
    <ClInclude Include="..\src\metric\rank_metric.hpp" />
    <ClInclude Include="..\src\metric\regression_metric.hpp" />
223
    <ClInclude Include="..\src\metric\multiclass_metric.hpp" />
Guolin Ke's avatar
Guolin Ke committed
224
225
226
227
228
    <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" />
229
    <ClInclude Include="..\src\objective\multiclass_objective.hpp" />
Guolin Ke's avatar
Guolin Ke committed
230
231
232
233
234
235
236
237
238
239
240
    <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" />
241
    <ClCompile Include="..\src\boosting\dart.cpp" />
Guolin Ke's avatar
Guolin Ke committed
242
    <ClCompile Include="..\src\c_api.cpp" />
Guolin Ke's avatar
Guolin Ke committed
243
244
245
    <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
246
    <ClCompile Include="..\src\io\dataset_loader.cpp" />
Guolin Ke's avatar
Guolin Ke committed
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
    <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" />
  </ItemGroup>
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  <ImportGroup Label="ExtensionTargets">
  </ImportGroup>
</Project>