-
Notifications
You must be signed in to change notification settings - Fork 16
/
binding.gyp
29 lines (29 loc) · 928 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
{
"targets": [
{
"include_dirs" : [
"<!(node -e \"require('nan')\")"
],
"target_name": "RecastCLI",
"sources": [
"main/port.cpp",
# "main/main.cpp",
"main/build.cpp",
"recast/ChunkyTriMesh.cpp",
"recast/MeshLoaderObj.cpp",
"recast/InputGeom.cpp",
"recast/Recast.cpp",
"recast/RecastAlloc.cpp",
"recast/RecastArea.cpp",
"recast/RecastAssert.cpp",
"recast/RecastContour.cpp",
"recast/RecastFilter.cpp",
"recast/RecastLayers.cpp",
"recast/RecastMesh.cpp",
"recast/RecastMeshDetail.cpp",
"recast/RecastRasterization.cpp",
"recast/RecastRegion.cpp",
]
}
]
}