aboutsummaryrefslogtreecommitdiff
path: root/binding.gyp
blob: 5810f8b3f280f19497e9c5c8e4c34ac3441a573f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "targets": [
    {
      "target_name": "mojave-permissions",
      'conditions': [
        ['OS=="mac"', {
          'sources': [
            'index.mm'
          ],
          'xcode_settings': {
            'CLANG_CXX_LIBRARY': 'libc++',
            'MACOSX_DEPLOYMENT_TARGET': '10.14',
            'OTHER_CFLAGS': [
                '-ObjC++'
            ]
          }
        }]
      ],
      "libraries": [ "-framework AVFoundation" ]
    }
  ]
}