#-asdf3.1 (error "requires asdf 3.1")
;; #+linux (deploy:define-library deploy::compression-lib :dont-deploy T)

(defsystem "tfcserver"
  :version "0.1.0"
  :author "Chris Cochrun"
  :license "AGPLV3"
  :depends-on ("hunchentoot"
               "dexador"
               "serapeum"
               "com.inuoe.jzon"
               "bordeaux-threads"
               "spinneret"
               "lass"
               "cl-smtp")  ;; <== list of Quicklisp dependencies
  :components ((:module "src"
                :components
                ((:file "main"))))
  :description "Restful server to handle website pieces"
  :long-description "Restful server to handle website pieces"
  ;; :in-order-to ((test-op (test-op "tfcserver-test")))
  ;; :defsystem-depends-on (:deploy)  ;; (ql:quickload "deploy") before
  :build-operation "program-op" ;; leave as is
  :build-pathname "tfcserver"
  :entry-point "tfcserver::main")