changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / demo.asd

changeset 11: d8f806f1d327
parent: bebb76da449c
child: c520966de7fa
author: ellis <ellis@rwest.io>
date: Sun, 14 May 2023 21:27:04 -0400
permissions: -rw-r--r--
description: obj updates
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 "cfg")
26  (:file "db")
27  (:file "ui")
28  (:file "demo"))
29  ;; :in-order-to ((test-op (test-op "demo/tests")))
30  ;; :defsystem-depends-on (:deploy)
31  ;; :build-operation "deploy"
32  :build-pathname "demo"
33  :entry-point "demo:main")
34 
35 ;; (asdf:defsystem "cl-demo:tests"
36  ;; :depends-on ("cl-demo" "fiveam")
37  ;; :components ((:file "tests"))
38  ;; :perform (test-op (o c) (symbol-call :fiveam '#:run! :cl-demo))
39  ;; )