Template
feat(kdl): add KDL parser producing AST
This commit is contained in:
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
/* 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"
|
||||
Reference in New Issue
Block a user