-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathProjectFileTypes.h
More file actions
483 lines (389 loc) · 9.86 KB
/
ProjectFileTypes.h
File metadata and controls
483 lines (389 loc) · 9.86 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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
#pragma once
#include "../pugixml/pugixml.hpp" //pugi::xml_node
#include "EnumReflect.h"
#include "CppReflect.h"
/// <summary>
/// Defines what needs to be done with given item. Not all project types support all enumerations - for example
/// packaging projects / C# projects does not support CustomBuild.
///
/// Order of EItemType must be the same as appear in .vcxproj (first comes first)
/// </summary>
DECLARE_ENUM(EItemType, "",
//
// C# references to .net assemblies
//
Reference,
//
// Header file (.h)
//
ClInclude,
//
// Source codes (.cpp) files
//
ClCompile,
//
// .rc / resource files.
//
ResourceCompile,
//
// Any custom file with custom build step
//
CustomBuild,
//
// .def / .bat
//
None,
//
// .ico files.
//
Image,
//
// .txt files.
//
Text,
// Following enumerations are used in android packaging project (.androidproj)
Content,
AntBuildXml,
AndroidManifest,
AntProjectPropertiesFile,
//
// For Android package project: Reference to another project, which needs to be included into package.
//
ProjectReference,
//
// Intentionally not valid value, so can be replaced with correct one. (Visual studio does not supports one)
//
Invalid,
//
// C# - source codes to compile
//
Compile,
//
// Android / Gradle project, *.template files.
//
GradleTemplate,
//
// .java - source codes to compile
//
JavaCompile,
//
// Native Visualization files (*.natvis)
//
Natvis
);
class SPM_DLLEXPORT ProjectItemGeneralConf : public ReflectClassT<ProjectItemGeneralConf>
{
public:
REFLECTABLE(ProjectItemGeneralConf,
(EItemType)ItemType
);
};
//
// Visual Studio project tagging.
//
DECLARE_ENUM(EKeyword, "keyword_",
//
// For sub-folders for example (Also default value). Also for utility projects.
//
keyword_None = 0,
//
// Windows project (32 or 64 bit)
//
keyword_Win32Proj,
//
// Same as Win32Proj, for some reason exists as separate value
//
keyword_ManagedCProj,
//
// Android project
//
keyword_Android,
//
// Windows application with MFC support
//
keyword_MFCProj,
//
// Android packaging project (does not exists on file format level)
//
keyword_AntPackage,
/// <summary>
/// Typically set for Android packaging project. (does not exists on file format level)
/// </summary>
keyword_GradlePackage
);
class SPM_DLLEXPORT ProjectGlobalConf : public ReflectClassT<ProjectGlobalConf>
{
public:
REFLECTABLE(ProjectGlobalConf,
// These are typically non-configurable by end-user.
// Shared items project specific
(CStringA)MSBuildAllProjects,
// Shared items project specific
(bool)HasSharedItems,
(CStringA)ProjectGuid,
// Shared items project specific
(CStringA)ItemsProjectGuid,
(EKeyword)Keyword,
(CStringW)WindowsTargetPlatformVersion
);
};
//
// Project type
//
DECLARE_ENUM(EConfigurationType, "conftype_",
//
// .exe
//
conftype_Application = 0,
//
// .dll
//
conftype_DynamicLibrary,
//
// .lib or .a
//
conftype_StaticLibrary,
//
// Android gradle project: Library (.aar/.jar)
//
conftype_Library,
//
// Utility project
//
conftype_Utility,
//
// This value does not physically exists in serialized form in .vcxproj, used only for generation of C# script.
//
conftype_ConsoleApplication
);
//
// Binary image format / target
//
DECLARE_ENUM(ESubSystem, "subsystem_",
//
// Not specified
//
subsystem_NotSet,
//
// <summary>
//
subsystem_Windows,
//
// Console application
//
subsystem_Console,
subsystem_Native,
subsystem_EFI_Application,
subsystem_EFI_Boot_Service_Driver,
subsystem_EFI_ROM,
subsystem_EFI_Runtime,
subsystem_POSIX
);
//
// Generate debug information
//
DECLARE_ENUM(EGenerateDebugInformation, "debuginfo_",
//
// No
//
debuginfo_false,
//
// Optimize for debugging
//
debuginfo_true,
//
// Use fast linking
//
debuginfo_DebugFastLink,
//
// Generate Debug Information optimized for sharing and publishing (/DEBUG:FULL)
//
debuginfo_DebugFull
);
class ProjectFile;
class SPM_DLLEXPORT PlatformConfigurationProperties
{
public:
ProjectFile* projectFile;
// So can safely delete by base pointer.
virtual ~PlatformConfigurationProperties() { }
// Configuration name / platform of specific configuration
std::wstring configurationName;
std::wstring platform;
};
class SPM_DLLEXPORT ProjectToolProperties : public PlatformConfigurationProperties
{
public:
virtual void OnAfterSetProperty(ReflectPath& path);
};
class SPM_DLLEXPORT CustomBuildToolProperties : public ProjectToolProperties, public ReflectClassT<CustomBuildToolProperties>
{
public:
inline static const char* ClassTypeName = "CustomBuild";
using ProjectToolProperties::OnAfterSetProperty;
REFLECTABLE(CustomBuildToolProperties,
// Command line
(CStringW)Command,
// Description. Use empty string to supress message printing.
(CStringW)Message,
// Outputs
(CStringW)Outputs,
// Additional dependencies
(CStringW)AdditionalInputs,
// Specify whether the inputs and outputs files with specific extension are passed to linker.
(bool)LinkObjects,
(bool)ExcludedFromBuild
);
};
class SPM_DLLEXPORT LinkerSystemConf: public ReflectClassT<LinkerSystemConf>
{
public:
REFLECTABLE(LinkerSystemConf,
(ESubSystem)SubSystem
);
};
class SPM_DLLEXPORT LinkerDebuggingConf : public ReflectClassT<LinkerDebuggingConf>
{
public:
REFLECTABLE(LinkerDebuggingConf,
(EGenerateDebugInformation)GenerateDebugInformation
);
};
class SPM_DLLEXPORT LinkerInputConf : public ReflectClassT<LinkerInputConf>
{
public:
REFLECTABLE(LinkerInputConf,
(std::wstring)AdditionalDependencies
);
};
//
// Character set - unicode MBCS.
//
DECLARE_ENUM(ECharacterSet, "charset_",
//
// Unicode
//
charset_Unicode = 0,
//
// Ansi
//
charset_MultiByte
);
//
// How to optimize code ?
//
DECLARE_ENUM(EOptimization, "optimization_",
optimization_Custom,
//
// No optimizations
//
optimization_Disabled,
//
// Minimize Size, in Windows projects
//
optimization_MinSpace,
//
// Minimize Size, In Android projects
//
optimization_MinSize,
//
// Maximize Speed
//
optimization_MaxSpeed,
//
// Full Optimization
//
optimization_Full,
//
// Not available in project file, but this is something we indicate that we haven't set value
//
optimization_ProjectDefault
);
DECLARE_ENUM(ELanguageStandard, "cpplang_",
// ISO C++14 Standard (/std:c++14)
cpplang_stdcpp14,
// ISO C++17 Standard (/std:c++17)
cpplang_stdcpp17,
// ISO C++ Latest Draft Standard (/std:c++latest)
cpplang_stdcpplatest
);
class SPM_DLLEXPORT CCppGeneralConf : public ReflectClassT<CCppGeneralConf>
{
public:
REFLECTABLE(CCppGeneralConf,
// Additional Include Directories, ';' separated list.
(CStringW)AdditionalIncludeDirectories,
(bool)MultiProcessorCompilation
);
};
class SPM_DLLEXPORT CCppOptimizationConf : public ReflectClassT<CCppOptimizationConf>
{
public:
REFLECTABLE(CCppOptimizationConf,
(EOptimization)Optimization
);
};
class SPM_DLLEXPORT CCppPreprocessorConf : public ReflectClassT<CCppPreprocessorConf>
{
public:
REFLECTABLE(CCppPreprocessorConf,
(std::wstring)PreprocessorDefinitions
);
};
class SPM_DLLEXPORT CCppLanguageConf : public ReflectClassT<CCppLanguageConf>
{
public:
REFLECTABLE(CCppLanguageConf,
(ELanguageStandard)LanguageStandard
);
};
class SPM_DLLEXPORT CCppConf: public ReflectClassT<CCppConf>
{
public:
REFLECTABLE(CCppConf,
(CCppGeneralConf)General,
(CCppOptimizationConf)Optimization,
(CCppPreprocessorConf)Preprocessor,
(CCppLanguageConf)Language
);
};
class SPM_DLLEXPORT GeneralConf : public ReflectClassT<GeneralConf>
{
public:
REFLECTABLE(GeneralConf,
(bool)LinkIncremental,
//
// Output directory
//
(CStringW)OutDir,
//
// Intermediate Directory
//
(CStringW)IntDir,
(CStringW)TargetName,
(CStringW)TargetExt,
(EConfigurationType)ConfigurationType,
//
// Mysterious flag, which cannot be set from Visual studio properties, but it affects to some parameter's default values.
//
(bool)UseDebugLibraries,
//
// For example:
// 'Clang_3_8' - Clang 3.8
// 'v141' - for Visual Studio 2017.
// 'v140' - for Visual Studio 2015.
// 'v120' - for Visual Studio 2013.
//
(CStringW)PlatformToolset,
(ECharacterSet)CharacterSet
);
};
class SPM_DLLEXPORT LinkerConf: public ReflectClassT<LinkerConf>
{
public:
REFLECTABLE(LinkerConf,
(LinkerSystemConf)System,
(LinkerDebuggingConf)Debugging,
(LinkerInputConf)Input
);
};