-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild_master.json
More file actions
46 lines (46 loc) · 1.34 KB
/
build_master.json
File metadata and controls
46 lines (46 loc) · 1.34 KB
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
39
40
41
42
43
44
45
46
{
"project_name": "MeshLib",
"canonical_name": "meshlib",
"description" : "Mesh Processing Library",
"dependencies" : [
"bufferlib",
"calltrace",
"diskmanager",
"hpml",
"safemem",
"tempsys"
],
"install_header_dirs" : [ "include/meshlib" ],
"include_dirs": [ "include" ],
"debug_defines" : [ "-DMESHLIB_DEBUG", "-DGLOBAL_DEBUG", "-DDEBUG", "-DLOG_DEBUG" ],
"release_defines" : [ "-DMESHLIB_RELEASE", "-DGLOBAL_RELEASE", "-DRELEASE", "-DLOG_RELEASE" ],
"targets": [
{
"name": "meshlib",
"is_executable": true,
"sources": [
"source/main.c"
]
},
{
"name" : "meshlib_static",
"description" : "Static library for MeshLib",
"is_static_library" : true
},
{
"name" : "meshlib_shared",
"description" : "Shared Library for MeshLib",
"is_shared_library" : true
}
],
"sources" : [
"source/obj/ascii.c",
"source/obj/binary.c",
"source/obj/parse_error.c",
"source/parsers/binary.c",
"source/parsers/string.c",
"source/stl/ascii.c",
"source/stl/binary.c",
"source/stl/parse_error.c"
]
}