forked from Srar/node-tap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
binding.gyp
34 lines (33 loc) · 941 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
{
"targets": [
{
"include_dirs": [
"<!(node -e \"require('nan')\")"
],
"cflags_cc": [
"-O3"
],
"xcode_settings": {
"CLANG_CXX_LANGUAGE_STANDARD": "c++11",
"CLANG_CXX_LIBRARY": "libc++",
"MACOSX_DEPLOYMENT_TARGET": "10.7",
"GCC_ENABLE_CPP_EXCEPTIONS": "YES",
"GCC_ENABLE_CPP_RTTI": "YES",
"OTHER_CPLUSPLUSFLAGS": [
"-O3"
]
},
"libraries": [
],
"target_name": "addon",
"sources": [
"main.cpp",
"deviceinfo.cpp",
"devicecontrol.cpp",
"ipforward_entry.cpp",
"create_device_file.cpp",
"rwevent_process.cpp"
]
}
]
}