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
|
{
'target_defaults': {
'default_configuration': 'Release',
'configurations': {
'Debug': {},
'Release': {}
},
},
'targets': [{
'target_name': 'gtest',
'type': 'static_library',
'sources': [
'gtest-all.cc'
],
'xcode_settings': {
'MACOSX_DEPLOYMENT_TARGET': '10.9',
},
'link_settings': {
'xcode_settings': { 'OTHER_LDFLAGS': [ '-lpthread' ] },
'ldflags': [ '-lpthread' ],
},
'direct_dependent_settings': {
'include_dirs': [
'.',
],
},
}]
}
|