changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / cl-demo.asd

changeset 0: eb8ed24e8a76
author: ellis <ellis@rwest.io>
date: Sun, 30 Apr 2023 22:01:32 -0400
permissions: -rw-r--r--
description: init
1 (asdf:defsystem "cl-demo"
2  :version "1.0.0"
3  :author "ellis <ellis@rwest.io>"
4  :maintainer "ellis <ellis@rwest.io>"
5  :description ""
6  :homepage "https://rwest.io/p/cl-demo"
7  :bug-tracker "https://gitlab.rwest.io/ellis/cl-demo/issues"
8  :source-control (:hg "https://gitlab.rwest.io/ellis/cl-demo")
9  :license "WTFPL"
10  :depends-on (:bordeaux-threads
11  #+(or ccl sbcl)
12  :clack
13  :caveman2
14  :clog
15  :cl-rocksdb
16  :verbose
17  :alexandria
18  :cl-ppcre
19  :cffi
20  :clingon)
21  :serial T
22  :components ((:file "pkg")
23  (:file "tk")
24  (:file "db")
25  (:file "ui")
26  (:file "demo"))
27  ;; :in-order-to ((test-op (test-op "cl-demo/tests")))
28  ;; :defsystem-depends-on (:deploy)
29  ;; :build-operation "deploy"
30  :build-pathname "cl-demo"
31  :entry-point "cl-demo:main")
32 
33 ;; (asdf:defsystem "cl-demo:tests"
34  ;; :depends-on ("cl-demo" "fiveam")
35  ;; :components ((:file "tests"))
36  ;; :perform (test-op (o c) (symbol-call :fiveam '#:run! :cl-demo))
37  ;; )