-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoose.yaml
More file actions
31 lines (29 loc) · 758 Bytes
/
goose.yaml
File metadata and controls
31 lines (29 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
project:
name: "goose"
version: "0.1.0"
description: "Cargo-inspired build tool for C"
author: ""
license: "MIT"
build:
cc: "cc"
cflags: "-std=c11 -DYAML_VERSION_MAJOR=0 -DYAML_VERSION_MINOR=2 -DYAML_VERSION_PATCH=5 -DYAML_VERSION_STRING=\\\"0.2.5\\\""
includes:
- "src"
- "libs/libyaml/include"
- "libs/libyaml/src"
sources:
- "src/build.c"
- "src/config.c"
- "src/fs.c"
- "src/lock.c"
- "src/pkg.c"
- "src/cmake.c"
- "libs/libyaml/src/api.c"
- "libs/libyaml/src/dumper.c"
- "libs/libyaml/src/emitter.c"
- "libs/libyaml/src/loader.c"
- "libs/libyaml/src/parser.c"
- "libs/libyaml/src/reader.c"
- "libs/libyaml/src/scanner.c"
- "libs/libyaml/src/writer.c"
dependencies: