forked from maxmert/mitie
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbinding.gyp
35 lines (35 loc) · 835 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
{
"targets": [
{
"target_name": "mitie",
"sources": [
"src/mitie.cc",
"src/entity_extractor.cc",
"src/relation_extractor.cc",
],
"cflags_cc+": [ "-frtti" ],
"cflags!": [ "-fno-exceptions", "-fno-rtti" ],
"cflags_cc!": [ "-fno-exceptions", "-fno-rtti"],
"include_dirs": [
"<!(node -e \"require('nan')\")",
"/usr/local/include/mitie",
"/usr/lib/mitie/MITIE/dlib"
],
"link_settings": {
"libraries": [
"-lmitie",
"-lpthread"
]
},
"conditions": [
['OS=="mac"', {
"xcode_settings": {
"GCC_ENABLE_CPP_EXCEPTIONS": "YES",
"GCC_ENABLE_CPP_RTTI": "YES",
"MACOSX_DEPLOYMENT_TARGET": "10.9"
}
}]
]
}
]
}