aboutsummaryrefslogtreecommitdiff
path: root/scgi-routes.asd
blob: 76f885db7d63312505b629ce9189a8f87a97152f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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))
  )