summaryrefslogtreecommitdiff
path: root/deps/gtest/gtest.gyp
blob: 3728dfc9145633123f174de5b15ba22325846162 (plain)
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
{
    'target_defaults': {
        'default_configuration': 'Release',
        'configurations': {
          'Debug': {},
          'Release': {}
        },
    },
    'targets': [{
        'target_name': 'gtest',
        'type': 'static_library',
        'sources': [
            'gtest-all.cc'
        ],
        'link_settings': {
            'xcode_settings': { 'OTHER_LDFLAGS': [ '-lpthread' ] },
            'ldflags': [ '-lpthread' ],
        },
        'direct_dependent_settings': {
            'include_dirs': [
              '.',
            ],
        },
    }]
}