-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathtoolchain.manifest.json
More file actions
50 lines (50 loc) · 1.64 KB
/
Copy pathtoolchain.manifest.json
File metadata and controls
50 lines (50 loc) · 1.64 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
{
"$schema": "Declares which files to bundle into the editor toolchain for WASM compilation.",
"engine": {
"root_files": ["CMakeLists.txt"],
"directories": [
"cmake",
"tools",
"src/esengine"
]
},
"third_party": {
"root_files": ["CMakeLists.txt"],
"full": [
"stb",
"nlohmann",
"cute_tiled",
"yoga"
],
"partial": {
"glm": ["glm"],
"spine-runtimes-3.8": ["spine-c/spine-c/src", "spine-c/spine-c/include"],
"spine-runtimes-4.1": ["spine-c/spine-c/src", "spine-c/spine-c/include"],
"spine-runtimes-4.2": [
"spine-cpp/spine-cpp/src", "spine-cpp/spine-cpp/include",
"spine-c/spine-c/src", "spine-c/spine-c/include"
]
}
},
"cmake": {
"version": "3.31.7",
"platforms": {
"darwin": {
"filename": "cmake-${version}-macos-universal.tar.gz",
"strip_prefix": "cmake-${version}-macos-universal/CMake.app/Contents"
},
"win32": {
"filename": "cmake-${version}-windows-x86_64.zip",
"strip_prefix": "cmake-${version}-windows-x86_64"
},
"linux-x64": {
"filename": "cmake-${version}-linux-x86_64.tar.gz",
"strip_prefix": "cmake-${version}-linux-x86_64"
},
"linux-arm64": {
"filename": "cmake-${version}-linux-aarch64.tar.gz",
"strip_prefix": "cmake-${version}-linux-aarch64"
}
}
}
}