cbuild/README.md
2024-07-12 03:19:09 +03:00

24 lines
377 B
Markdown

# cbuild
My C/C++ build system written in bash.
## Installation
```bash
git clone https://timerix.ddns.net:3322/cbuild.git
cd cbuild
sudo ./setup.sh
```
## Usage
1. Initialize cbuild project in some directory:
```bash
cd some_project
cbuild --new-project
```
2. Edit `default.config`.
3. Call some tasks:
```bash
cbuild build_exec_dbg exec
```