changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 663: cc89b337384b
parent: 35a579313b80
child: 90417ae14b21
author: Richard Westhaver <ellis@rwest.io>
date: Sat, 21 Sep 2024 22:58:22 -0400
permissions: -rw-r--r--
description: skel upgrades, added skel/net
1 ;; (push :inspect *features*)
2 (defsystem :skel
3  :version "0.1.0"
4  :maintainer "ellis <ellis@rwest.io>"
5  :bug-tracker "https://vc.compiler.company/comp/core/issues"
6  :depends-on (:uiop :asdf :sb-posix :sb-bsd-sockets :sb-concurrency :cl-ppcre :std
7  :obj :dat :cli :organ :doc :vc
8  :pod :net :box
9  (:feature :ext :krypt)
10  (:feature :ext :packy)
11  (:feature :gui :clouseau))
12  :serial t
13  :components
14  ((:module "core"
15  :serial t
16  :components
17  ((:file "pkg")
18  (:file "err")
19  (:file "types")
20  (:file "proto")
21  (:file "header")
22  (:file "vars")
23  (:file "obj")
24  (:file "print")
25  (:file "util")
26  (:file "vm")))
27  (:module "comp"
28  :components
29  ((:file "pkg")
30  (:file "asd")
31  (:file "cargo")
32  (:file "container")
33  (:file "org")
34  (:file "dir-locals")
35  (:file "makefile")))
36  (:module "net"
37  :components
38  ((:file "pkg")
39  (:file "server")
40  (:file "client")))
41  (:file "pkg")
42  (:module "tools"
43  :components
44  ((:file "pkg")
45  (:file "deploy" :if-feature :deploy)
46  (:file "viz" :if-feature :gui)))
47  (:module "ext"
48  :components
49  ((:file "pkg")
50  (:file "asdf")
51  (:file "inspect" :if-feature :gui)
52  (:file "krypt")
53  (:file "packy"))
54  :if-feature :ext))
55  :in-order-to ((test-op (test-op "skel/tests"))))
56 
57 (defsystem :skel/tests
58  :depends-on (:rt :skel)
59  :components ((:file "tests"))
60  :perform (test-op (o c) (symbol-call :rt :do-tests :skel)))