ankeesler / btool

The simplest C/C++ build tool.
0 stars 0 forks source link

btool

The simplest C/C++ build tool.

btool

To try out btool...

$ docker run -v $PWD:/src -w /src -it ankeesler/btool
$ /btool -root BasicC -target main
...
$ ./BasicC/main
hey!
$ cat example/README.md # for more information about the examples

To install the latest btool build...

$ ./script/install-btool.sh latest

To install a local btool build...

$ ./script/install-btool.sh local

To run the tests...

$ ./script/test.sh -u # unit tests
$ ./script/test.sh -i # integration tests

Guiding Principles