changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / demo.asd

changeset 3: 8f59e2f1b8c4
child: bebb76da449c
author: ellis <ellis@rwest.io>
date: Fri, 05 May 2023 22:41:30 -0400
permissions: -rw-r--r--
description: stuff
1 (asdf:defsystem "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/demo"
7  :bug-tracker "https://gitlab.rwest.io/ellis/demo/issues"
8  :source-control (:hg "https://gitlab.rwest.io/ellis/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 "ffi")
24  (:file "tk")
25  (:file "db")
26  (:file "ui")
27  (:file "demo"))
28  ;; :in-order-to ((test-op (test-op "demo/tests")))
29  ;; :defsystem-depends-on (:deploy)
30  ;; :build-operation "deploy"
31  :build-pathname "demo"
32  :entry-point "demo:main")
33 
34 ;; (asdf:defsystem "cl-demo:tests"
35  ;; :depends-on ("cl-demo" "fiveam")
36  ;; :components ((:file "tests"))
37  ;; :perform (test-op (o c) (symbol-call :fiveam '#:run! :cl-demo))
38  ;; )