changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 698: 96958d3eb5b0
parent: 849f72b72b41
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 (defsystem :dat
2  :description "Data Systems"
3  :depends-on (:cl-ppcre :std :obj #+png :png :flexi-streams :io :log)
4  :version "0.1.0"
5  :serial t
6  :components ((:file "pkg")
7  (:file "proto")
8  (:file "sxp")
9  (:file "dot")
10  (:file "csv")
11  (:file "json")
12  (:module "parquet"
13  :components
14  ((:file "gen")
15  (:file "pkg")
16  (:file "obj")
17  (:file "thrift")
18  (:file "tcompact")
19  (:file "io")
20  (:file "rle")
21  (:file "proto")))
22  (:module "xml"
23  :components
24  ((:file "xml")
25  (:file "pkg")
26  (:file "svg")
27  (:file "fixml")))
28  (:module "html"
29  :components
30  ((:file "const")
31  (:file "entity")
32  (:file "html")))
33  (:file "handlebars")
34  (:file "mime")
35  (:file "toml")
36  (:file "arff")
37  (:file "midi")
38  #+png (:file "png")
39  (:file "base64")
40  #+bencode (:file "bencode"))
41  :in-order-to ((test-op (test-op "dat/tests"))))
42 
43 (defsystem :dat/tests
44  :depends-on (:rt :dat)
45  :perform (test-op (o c) (symbol-call :rt :do-tests :dat)))