mojave-permissions/binding.gyp
2018-12-25 20:35:55 +03:00

23 lines
456 B
Python
Executable File

{
"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" ]
}
]
}