-
Notifications
You must be signed in to change notification settings - Fork 55
/
googletest.gyp
82 lines (81 loc) · 2.3 KB
/
googletest.gyp
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
{
'target_defaults': {
'configurations': {
'Debug': {
'defines': [ 'DEBUG' ],
'msvs_settings': {
'VCCLCompilerTool': {
'Optimization': '0',
'conditions': [
['OS=="win" and component=="shared_library"', {
'RuntimeLibrary': '3', # /MDd
}, {
'RuntimeLibrary': '1', # /MTd
}]
],
},
},
},
'Release': {
'msvs_settings': {
'VCCLCompilerTool': {
'Optimization': '2',
'InlineFunctionExpansion': '2',
'EnableIntrinsicFunctions': 'true',
'FavorSizeOrSpeed': '0',
'StringPooling': 'true',
'conditions': [
['OS=="win" and component=="shared_library"', {
'RuntimeLibrary': '2', # /MD
}, {
'RuntimeLibrary': '0', # /MT
}]
],
},
},
},
},
'conditions': [[
'target_arch=="x64"', {
'xcode_settings': {
'ARCHS': [ 'x86_64' ],
},
'msvs_configuration_platform': 'x64',
}, {
'xcode_settings': {
'ARCHS': [ 'x86_64' ],
},
},
]]
},
'targets': [{
'target_name': 'googletest',
'type': '<(library)',
'sources': [
'third_party/googletest/googletest/src/gtest-death-test.cc',
'third_party/googletest/googletest/src/gtest-filepath.cc',
'third_party/googletest/googletest/src/gtest-port.cc',
'third_party/googletest/googletest/src/gtest-printers.cc',
'third_party/googletest/googletest/src/gtest-test-part.cc',
'third_party/googletest/googletest/src/gtest-typed-test.cc',
'third_party/googletest/googletest/src/gtest.cc'
],
'include_dirs': [
'third_party/googletest/googletest',
'third_party/googletest/googletest/include'
],
'direct_dependent_settings': {
'include_dirs': [
'third_party/googletest/googletest',
'third_party/googletest/googletest/include'
]
},
},
{
'target_name': 'googletest_main',
'type': '<(library)',
'sources': ['third_party/googletest/googletest/src/gtest_main.cc'],
'dependencies': ['googletest'],
'export_dependent_settings': ['googletest']
}]
}