-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbinding.gyp
35 lines (35 loc) · 1.07 KB
/
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": "labeller",
"sources": [
"src/nodepal.cc",
"src/pal/layer.cpp",
"src/pal/pal.cpp",
"src/pal/label.cpp",
"src/pal/feature.cpp",
"src/pal/Geom.cpp",
"src/pal/geomfunction.cpp",
"src/pal/labelposition.cpp",
"src/pal/palstat.cpp",
"src/pal/pointset.cpp",
"src/pal/priorityqueue.cpp",
"src/pal/problem.cpp",
"src/pal/util.cpp",
"src/pal/hashtable.hpp",
"src/pal/linkedlist.hpp",
"src/pal/rtree.hpp"
],
"cflags!": ["-fno-exceptions"],
"cflags_cc!": ["-fno-exceptions"],
"conditions": [
['OS=="mac"', {
"xcode_settings": {
"GCC_ENABLE_CPP_EXCEPTIONS": "YES"
}
}]
],
"libraries": ["-lgeos_c"]
}
]
}