changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 698: 96958d3eb5b0
parent: 35bb0d5ec95e
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 (defsystem :syn
2  :version "0.1.0"
3  :maintainer "Richard Westhaver <richard.westhaver@gmail.com>"
4  :bug-tracker "https://vc.compiler.company/comp/core/issues"
5  :depends-on (:std :obj :parse :tree-sitter)
6  :serial t
7  :components ((:file "pkg"))
8  :in-order-to ((test-op (test-op "syn/tests"))))
9 
10 (defsystem :syn/tests
11  :depends-on (:rt :syn)
12  :components ((:file "tests"))
13  :perform (test-op (o c) (symbol-call :rt :do-tests :syn)))