changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/web/web.asd

changeset 381: 386d51cf61ca
parent: e912dc076208
child: 0f0e5f9b5c55
author: Richard Westhaver <ellis@rwest.io>
date: Tue, 28 May 2024 23:12:31 -0400
permissions: -rw-r--r--
description: add ffi/readline, net updates
1 (defsystem :web/index
2  :depends-on (:uiop :cl-ppcre :std :rdb :hunchentoot :parenscript :lass :spinneret :organ)
3  :components ((:file "index"))
4  :in-order-to ((test-op (test-op "app/tests")))
5  :build-operation "program-op"
6  :build-pathname "web-index"
7  :entry-point "app/web/index::main")
8 
9 (defsystem :web/dash
10  :depends-on (:uiop :cl-ppcre :std :rdb :parenscript :lass :spinneret :organ)
11  :components ((:file "dash"))
12  :in-order-to ((test-op (test-op "app/tests")))
13  :build-operation "program-op"
14  :build-pathname "web-dash"
15  :entry-point "app/web/dash::main")
16 
17 (defsystem :web
18  :depends-on (:web/dash :web/index))