Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 553 Bytes

README.md

File metadata and controls

23 lines (20 loc) · 553 Bytes

Cobalt Build System

Simple, minimalistic build system/build generator for C projects which uses Modules for custom dependencies.
It outputs Ninja build files which compiles at lightning fast speed utilizing multiple cores.

How to use

  1. Create a new project using:
cobalt new my-awesome-game
  1. Modify the project file, i.e Cobalt.json:
{
    "id": "my-awesome-game",
    "type": "application",
    "src": [ "main.c", "game.c", "player.c", "evil_enemy.c" ]
}
  1. And then built the project using:
cobalt build