-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake.json
More file actions
50 lines (50 loc) · 860 Bytes
/
make.json
File metadata and controls
50 lines (50 loc) · 860 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/zheka2304/innercore-mod-toolchain/develop/toolchain/schemas/make.schema.json",
"info": {
"name": "SignEdit",
"version": "1.3",
"author": "Nernar",
"description": "Click on sign to edit."
},
"resources": [],
"sources": [
{
"type": "launcher",
"language": "javascript",
"source": "launcher.js"
},
{
"type": "main",
"language": "javascript",
"source": "script"
}
],
"compile": [
{
"type": "java",
"source": "java/signedit"
},
{
"type": "native",
"source": "native/signedit"
}
],
"native": {
"options": ["-std=c++11"],
"configurations": {
"arm64": {
"options": ["-std=c++17", "-DARM64=1"]
}
}
},
"additional": [
{
"source": "config.json",
"targetDir": "."
},
{
"source": "config.info.json",
"targetDir": "."
}
]
}