changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 698: 96958d3eb5b0
parent: 90417ae14b21
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
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 "proto")
20  (:file "header")
21  (:file "vars")
22  (:file "obj")
23  (:file "print")
24  (:file "util")
25  (:file "vm")))
26  (:module "comp"
27  :components
28  ((:file "pkg")
29  (:file "asd")
30  (:file "cargo")
31  (:file "container")
32  (:file "org")
33  (:file "dir-locals")
34  (:file "makefile")))
35  (:module "net"
36  :components
37  ((:file "pkg")
38  (:file "server")
39  (:file "client")))
40  (:file "pkg")
41  (:module "tools"
42  :components
43  ((:file "pkg")
44  (:file "deploy" :if-feature :deploy)
45  (:file "viz" :if-feature :gui)))
46  (:module "ext"
47  :components
48  ((:file "pkg")
49  (:file "asdf")
50  (:file "inspect" :if-feature :gui)
51  (:file "krypt")
52  (:file "packy"))
53  :if-feature :ext))
54  :in-order-to ((test-op (test-op "skel/tests"))))
55 
56 (defsystem :skel/tests
57  :depends-on (:rt :skel)
58  :components ((:file "tests"))
59  :perform (test-op (o c) (symbol-call :rt :do-tests :skel)))