UnifyAll 0.1.2

Unify is a simple build script CLI-tool meant to simplify the compilation of large codebases
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# UnifyAll

UnifyAll is a simple build script CLI-tool meant to simplify the compilation of large codebases

## Example 'build.u' for C++


```md
# Build script


COMP: "g++"

ARGS:
  "-o",
  "main",
  "main.cpp",
```