Template
22 lines
621 B
KDL
22 lines
621 B
KDL
/* Parser fixture: a realistic multi-node build file exercising node names,
|
|
arguments, properties, children blocks, comments, a slashdash, and
|
|
semicolon separators. Parsed by tests/unit/test_parser.c against an
|
|
exact expected AST (counts, order, nesting, spans). */
|
|
|
|
// top-level line comment
|
|
project name="stupidtools" version="1.0.0"
|
|
|
|
target "default" {
|
|
src "src/main.c" ; src "src/kdl/lexer.c"
|
|
cc-flags "-std=c23" "-Wall" // pinned warning flags
|
|
jobs 8
|
|
optimize #true debug=#false
|
|
feature "unit-tests" {
|
|
option "munit" { default #true }
|
|
}
|
|
}
|
|
|
|
/-
|
|
|
|
(meta)credits "huntedbytheirs"
|