changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / demo.asd

changeset 16: af615d1895cb
parent: 1fedeaa5bfc5
child: a1137af05c8d
author: ellis <ellis@rwest.io>
date: Fri, 26 May 2023 21:59:40 -0400
permissions: -rw-r--r--
description: refactoring, ui stuff (goin with slint for DSL power)
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  :clog
14  :cl-rocksdb
15  :verbose
16  :alexandria
17  :cl-ppcre
18  :cffi
19  :clingon)
20  :serial T
21  :components ((:file "pkg")
22  (:file "ffi")
23  (:file "tk")
24  (:file "cfg")
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  ;; )