Alepacho / dbuil

Like Make, but DBuil

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DBUIL

DBUIL is a small build automation program. It's like Make, but uses json instead of Makefile.

Example

This is an example of how dbuil.json file look like:

{
  "variables" : {
    "message": "Hello World!"
  },
  "targets": [
    {
      "name": "test",
      "description": "Sample Text",
      "commands": [ "echo ${message}" ]
    }
  ]
}

See other examples in dbuil.json and test folder.

How to use

Just type ./dbuil -help to see all available commands.

About

Like Make, but DBuil

License:Other


Languages

Language:C++ 100.0%Language:Makefile 0.0%