yabs 0.2.2

Yet another build system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[project]
name = "example"
compiler = "g++"
compiler-flags = ["std=c++11"]
file-extensions = ["cpp", "c"]

after-script = [
	"./cpp_bin",
	"./c_bin"
]

[[bin]]
name = "cpp_bin"
path = "src/cpp/main.cpp"

[[bin]]
name = "c_bin"
path = "src/c/main.c"