(asdf:defsystem #:scgi-routes :name "scgi-routes" :description "A library for handling routing of SCGI requests." :author "Thomas Albers Raviola " :maintainer "Thomas Albers Raviola " :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)) )