changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > demo / demo.asd

revision 3: 8f59e2f1b8c4
child 8: bebb76da449c
     1.1--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2+++ b/demo.asd	Fri May 05 22:41:30 2023 -0400
     1.3@@ -0,0 +1,38 @@
     1.4+(asdf:defsystem "demo"
     1.5+  :version "1.0.0"
     1.6+  :author "ellis <ellis@rwest.io>"
     1.7+  :maintainer "ellis <ellis@rwest.io>"
     1.8+  :description ""
     1.9+  :homepage "https://rwest.io/p/demo"
    1.10+  :bug-tracker "https://gitlab.rwest.io/ellis/demo/issues"
    1.11+  :source-control (:hg "https://gitlab.rwest.io/ellis/demo")
    1.12+  :license "WTFPL"
    1.13+  :depends-on (:bordeaux-threads
    1.14+	       #+(or ccl sbcl)
    1.15+	       :clack
    1.16+	       :caveman2
    1.17+	       :clog
    1.18+	       :cl-rocksdb
    1.19+	       :verbose
    1.20+	       :alexandria
    1.21+	       :cl-ppcre
    1.22+	       :cffi
    1.23+	       :clingon)
    1.24+  :serial T
    1.25+  :components ((:file "pkg")
    1.26+	       (:file "ffi")
    1.27+	       (:file "tk")
    1.28+	       (:file "db")
    1.29+	       (:file "ui")
    1.30+	       (:file "demo"))
    1.31+  ;; :in-order-to ((test-op (test-op "demo/tests")))
    1.32+  ;; :defsystem-depends-on (:deploy)
    1.33+  ;; :build-operation "deploy"
    1.34+  :build-pathname "demo"
    1.35+  :entry-point "demo:main")
    1.36+
    1.37+;; (asdf:defsystem "cl-demo:tests"
    1.38+  ;; :depends-on ("cl-demo" "fiveam")
    1.39+  ;; :components ((:file "tests"))
    1.40+  ;; :perform (test-op (o c) (symbol-call :fiveam '#:run! :cl-demo))
    1.41+  ;; )