aboutsummaryrefslogtreecommitdiff
path: root/scgi-routes.asd
diff options
context:
space:
mode:
Diffstat (limited to 'scgi-routes.asd')
-rw-r--r--scgi-routes.asd28
1 files changed, 28 insertions, 0 deletions
diff --git a/scgi-routes.asd b/scgi-routes.asd
new file mode 100644
index 0000000..76f885d
--- /dev/null
+++ b/scgi-routes.asd
@@ -0,0 +1,28 @@
+(asdf:defsystem #:scgi-routes
+ :name "scgi-routes"
+ :description "A library for handling routing of SCGI requests."
+ :author "Thomas Albers Raviola <thomas@thomaslabs.org>"
+ :maintainer "Thomas Albers Raviola <thomas@thomaslabs.org>"
+ :license "GPL-3"
+ :version "1.0.0"
+ :serial t
+ :depends-on (:alexandria
+ :quri
+ :split-sequence
+ :usocket-server)
+ :pathname "src"
+ :components ((:file "package")
+ (:file "routes"))
+ :in-order-to ((test-op (test-op "scgi-routes/tests"))))
+
+(asdf:defsystem #:scgi-routes/tests
+ :name "scgi-routes tests"
+ :serial t
+ :depends-on (:scgi-routes
+ :fiveam)
+ :pathname "tests"
+ :components ((:file "package")
+ (:file "test-routes"))
+ ;; :perform (test-op (o c)
+ ;; (uiop/package:symbol-call "FIASCO" "RUN-TESTS" 'stumpwm-tests))
+ )