An open API service indexing awesome lists of open source software.

https://github.com/sgssgene/busy

build system for c++
https://github.com/sgssgene/busy

buildsystem

Last synced: about 1 year ago
JSON representation

build system for c++

Awesome Lists containing this project

README

          

# busy - (BUild SYstem)
build system for c++ projects.

Main Idea
=========
- minimal configuration of projects

Installation
============

```
git clone https://github.com/SGSSGene/busy.git
cd busy
./bootstrap.sh
sudo cp busy /usr/bin
```

How to use it
=============
If you have a project that is supported by busy you can run following things:
- `busy` will compile all libraries, executables and unittests
- `busy build ` will build only a specific executable,library or unittest
- `busy clean` will clean the workspace (shouldn't be really be needed)
- `busy cleanall` will clean the workspace (shouldn't be really be needed)

Target forms:
- executable
- static library
- shared library (headers available)
- plugin library (a shared library without headers)