-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerator.json
More file actions
77 lines (76 loc) · 1.82 KB
/
generator.json
File metadata and controls
77 lines (76 loc) · 1.82 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"tasks": [
{
"profileName": "jack",
"sources": [
"jack2/common/jack/jack.h",
"jack2/common/jack/types.h",
"jack2/common/jack/transport.h",
"jack2/common/jack/systemdeps.h",
],
"mode": "Clang",
"cacheDir": "/build/cache",
"cacheKey": "jack",
"controlDescriptors": [
"no-obsolete-enum",
"typemap-native"
],
"converter": {},
"clang": {
"args": [
"--language=c++",
"--std=c++17",
"-fblocks",
"-m32",
"-Wno-expansion-to-defined",
"-Wno-ignored-attributes",
"-Wno-ignored-pragma-intrinsic",
"-Wno-nonportable-include-path",
"-Wno-pragma-pack",
"-I$windowsSdkIncludes",
"-Ijack2/common"
],
"traverse": [
"jack2/common/jack/*.h"
],
"classes": {
"jack.h": "[Core]Jack",
"types.h": "[Core]Jack",
"transport.h": "[Core]Jack",
"systemdeps.h": "[Core]Jack",
}
},
"exclude": [],
"rename": {},
"bakery": {
"profileNames": [
"jack"
]
},
"output": {
"path": "JackCS",
"licenseFile": "license_header.txt",
"props": "msbuild.props"
},
"prefix": "jack_",
"namespace": "JackCS",
"extensionsNamespace": "JackCS.Extensions",
"nameContainer": {
"linux-x64": "libjack.so",
"win-x64": "libjack.dll",
"win-x86": "libjack.dll",
"osx-x64": "libjack.dylib",
"android": "libjack.so",
"iOS": "libjack.dylib",
"className": "JackLibraryNameContainer"
},
"typeMaps": [
{
},
{
"$include.commonTypeMap": "csharp_typemap.json"
}
]
}
]
}