leafbuild 0.0.1-dev.1

A WIP C/C++ buildsystem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Project Model

Let's start with the simplest part of a leaf build system: a module.

## Module

In a nutshell, a module is any folder that has a `build.leaf` file directly below it.

## Project

A project is a module that contains some extra metadata.
See the [kwargs of the `project()` function]() to find out more.

The metadata present in the project should apply to all of its submodules.

# The `build.leaf` file