changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/parse/parse.asd

changeset 369: de40bd522c84
parent: 7c1383c08493
child: dec30b6fd500
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 26 May 2024 15:39:55 -0400
permissions: -rw-r--r--
description: png fixes
1 (defsystem :parse
2  :version "0.1.0"
3  :maintainer "ellis <ellis@rwest.io>"
4  :bug-tracker "https://lab.rwest.io/ellis/packy/issues"
5  :depends-on (:cl-ppcre :std :babel)
6  :components ((:file "pkg")
7  (:file "bytes")
8  (:file "lex")
9  (:file "yacc"))
10  :in-order-to ((test-op (test-op :parse/tests))))
11 
12 (defsystem :parse/tests
13  :depends-on (:rt :parse)
14  :components ((:file "tests"))
15  :perform (test-op (o c) (symbol-call :rt :do-tests :parse)))