-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
31 lines (31 loc) · 990 Bytes
/
project.json
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
{
"id": "cpp/worktycho-whitespace-llvm",
"name": "whitespace-llvm",
"authors": ["Tycho Bickerstaff"],
"license": "GPL-2.0-or-later",
"languages": ["C++", "LLVM"],
"tags": ["compiler", "JIT", "optimizer", "programs"],
"date": "2013-08-31 19:34:35 +0100",
"spec_version": "0.3",
"source": ["https://github.com/worktycho/whitespace-llvm"],
"submodules": [{ "path": "whitespace-llvm", "url": "https://github.com/worktycho/whitespace-llvm" }],
"bounds": { "precision": "arbitrary" },
"whitespace": { "extension": "ws" },
"programs": [
{ "path": "count.ws" },
{ "path": "test.ws" },
{ "path": "yet-another-quine.ws" },
{ "path": "tests/syntaxerror.ws" },
{ "path": "tests/undefinedlabel.ws" }
],
"build_errors": "Requires LLVM",
"commands": [
{
"type": "compiler",
"bin": "wspace-jit",
"usage": "[--list-instructions] <file>",
"options": [{ "long": "list-instructions" }],
"option_parse": "manual"
}
]
}