-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefaults.gypi
More file actions
75 lines (75 loc) · 2.08 KB
/
defaults.gypi
File metadata and controls
75 lines (75 loc) · 2.08 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
{
'target_defaults':
{
'msbuild_toolset': 'CTP_Nov2013', # msvs-2013
'msvs_settings':
{
'VCCLCompilerTool':
{
'WarningLevel': 4, # 'Level4'
'WarnAsError': 'true',
'DisableSpecificWarnings':
[
'4351', # new behavior: elements of array will be default initialized
'4512', # assignment operator was implicitly defined as deleted
'4510', # default constructor was implicitly defined as deleted
],
},
'VCLinkerTool':
{
# Set /SUBSYSTEM:CONSOLE
'SubSystem': '1',
},
},
'configurations':
{
'Debug':
{
'msvs_configuration_platform': 'Win32',
'msvs_settings':
{
'VCCLCompilerTool':
{
'Optimization': 0, # 'Disabled'
},
'VCLinkerTool':
{
'GenerateDebugInformation': 'true',
},
},
},
'Debug_x64':
{
'inherit_from':
[
'Debug'
],
'msvs_configuration_platform': 'x64',
},
'Release':
{
'msvs_configuration_platform': 'Win32',
'defines':
[
'NDEBUG',
],
'msvs_settings':
{
'VCCLCompilerTool':
{
'Optimization': 3, # 'Full'
},
},
},
'Release_x64':
{
'inherit_from':
[
'Release'
],
'msvs_configuration_platform': 'x64',
},
},
'default_configuration': 'Debug',
},
}