changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/std/std.asd

changeset 208: 616fdccec4a2
parent: d20482540d67
child: 17c05cd3e549
author: Richard Westhaver <ellis@rwest.io>
date: Sat, 17 Feb 2024 13:49:17 -0500
permissions: -rw-r--r--
description: bits
1 ;;; std.asd --- standard library
2 (defsystem :std/named-readtables
3  :components ((:file "named-readtables"))
4  :in-order-to ((test-op (test-op "std/tests"))))
5 
6 (register-system-packages "std/named-readtables" '(:std))
7 
8 (defsystem :std
9  :depends-on (:std/named-readtables :cl-ppcre :sb-concurrency)
10  :serial t
11  :components ((:file "pkg")
12  (:file "err")
13  (:file "bits")
14  (:module "num"
15  :components ((:file "float")
16  (:file "parse")))
17  (:file "str")
18  (:file "fmt")
19  (:file "sym")
20  (:file "list")
21  (:file "util")
22  (:file "readtable")
23  (:file "fu")
24  (:file "ana")
25  (:file "pan")
26  (:file "thread")
27  (:file "alien"))
28  :in-order-to ((test-op (test-op "std/tests"))))
29 
30 (register-system-packages "std" '(:std))
31 
32 (defsystem :std/tests
33  :depends-on (:std :rt)
34  :serial t
35  :components ((:file "tests"))
36  :perform (test-op (o c) (symbol-call :rt :do-tests :std)))