-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbinding.gyp
38 lines (38 loc) · 979 Bytes
/
binding.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
{
'targets': [{
'target_name': 'puerts_node',
'sources': [
'src/CppObjectMapper.cpp',
'src/DataTransfer.cpp',
'src/JSClassRegister.cpp',
'src/PesapiAddonLoad.cpp',
'src/PesapiV8Impl.cpp'
],
'include_dirs': [
'puerts_libs/include'
],
"defines": [ "MAPPER_ISOLATE_DATA_POS=2"],
'dependencies': [
],
'cflags': [ '-fno-exceptions', '-Wno-cast-function-type', '-O3' ],
'cflags_cc': [ '-fno-exceptions', '-Wno-cast-function-type', '-O3' ],
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
'CLANG_CXX_LIBRARY': 'libc++',
'MACOSX_DEPLOYMENT_TARGET': '10.7',
},
'msvs_settings': {
'VCCLCompilerTool': { 'ExceptionHandling': 1 },
},
'conditions': [
['OS=="win"', {
'sources': [
'src/win32-dlfcn.cc'
]
}, {
'cflags': [ '-Wl,-export-dynamic' ],
'cflags_cc': [ '-Wl,-export-dynamic' ]
}]
]
}]
}