changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 698: 96958d3eb5b0
parent: 4d8451fe5423
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 (defsystem :web
2  :depends-on (:std :net :obj :dat :parse :doc :organ :syn :cry :nlp)
3  :components ((:file "pkg")
4  (:module "wasm"
5  :components
6  ((:file "pkg")
7  (:file "text")
8  (:file "binary"))))
9  :in-order-to ((test-op (test-op "web/tests"))))
10 
11 (defsystem :web/tests
12  :depends-on (:rt :net :web)
13  :components ((:file "tests"))
14  :perform (test-op (o c) (symbol-call :rt :do-tests :web)))
15 
16 (defsystem :web/index
17  :depends-on (:uiop :cl-ppcre :std :rdb :hunchentoot :parenscript :lass :spinneret :organ)
18  :components ((:file "index"))
19  :in-order-to ((test-op (test-op "web/tests")))
20  :build-operation "program-op"
21  :build-pathname "web-index"
22  :entry-point "web/index::main")
23 
24 (defsystem :web/dash
25  :depends-on (:uiop :cl-ppcre :std :rdb :parenscript :lass :spinneret :organ)
26  :components ((:file "dash"))
27  :in-order-to ((test-op (test-op "web/tests")))
28  :build-operation "program-op"
29  :build-pathname "web-dash"
30  :entry-point "web/dash::main")