changelog shortlog graph tags branches changeset file revisions annotate raw help

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

revision 109: a5adbe8640b0
child 127: 960c010a23ce
     1.1--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2+++ b/lisp/lib/parse/parse.asd	Sun Dec 17 23:30:05 2023 -0500
     1.3@@ -0,0 +1,14 @@
     1.4+(defsystem :parse
     1.5+  :version "0.1.0"
     1.6+  :maintainer "ellis <ellis@rwest.io>"
     1.7+  :bug-tracker "https://lab.rwest.io/ellis/packy/issues"
     1.8+  :depends-on (:cl-ppcre :std)
     1.9+  :components ((:file "pkg")
    1.10+               (:file "lex")
    1.11+               (:file "lalr"))
    1.12+  :in-order-to ((test-op (test-op :parse/tests))))
    1.13+
    1.14+(defsystem :parse/tests
    1.15+  :depends-on (:rt :parse)
    1.16+  :components ((:file "tests"))
    1.17+  :perform (test-op (o c) (symbol-call :rt :do-tests :parse)))