tesohh-bricks 1.0.4

build system and package manager for C/C++
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Platforms

Platforms allow you to have certain configs only for certain platforms.

Here is an example config that uses 

```toml
[brick]
name = "project"
kind = "binary"
lang = "c"
edition = "c99"
macos.ldflags = "-framework Cocoa -framework OpenGL -framework IOKit -framework CoreVideo"
macos.cflags = "-Wall"
windows.ldflags = "-lgdi32 -lwinmm -lopengl32"
```