-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.fan
executable file
·45 lines (39 loc) · 931 Bytes
/
build.fan
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
#! /usr/bin/env fan
using build
class Build : build::BuildPod
{
new make()
{
podName = "fes2bf"
summary = "Brainfuck language interpreter programmed in Fantom"
version = Version("1.0")
meta = [
"proj.name": "Brainfuck",
"proj.uri": "https://github.com/fraya/fes2bf",
"license.name": "GPL-3",
"repo.public": "true",
"repo.tags": "interpreter, brainfuck, compiler, transpiler",
"vcs.name": "Git",
"vcs.uri": "https://github.com/fraya/fes2bf"
]
depends = [
"sys 1.0",
"util 1.0+"
]
srcDirs = [
`fan/`,
`fan/compiler/`,
`fan/core/`,
`fan/interpreter/`,
`fan/instruction/`,
`fan/instruction/io/`,
`fan/instruction/jump/`,
`fan/instruction/tape/`,
`fan/instruction/other/`,
`fan/optimization/`,
`fan/program/`,
`fan/transpiler/`,
`test/`
]
}
}