Hash :
9604b515
Author :
Thomas de Grivel
Date :
2017-08-01T21:53:34
(in-package :common-lisp-user)
(defpackage :thot.system
(:use :common-lisp :asdf))
(in-package :thot.system)
(defsystem "thot"
:depends-on ("babel"
"bordeaux-queue"
"bordeaux-set"
"bordeaux-threads"
"babel-stream"
"cffi-dirent"
"cffi-epoll"
"cffi-socket"
"cl-debug"
"cl-stream"
"fd-stream"
"html-entities"
"rol-uri")
:components
((:file "package")
(:file "thot" :depends-on ("package"))
(:file "thot-simple" :depends-on ("thot"))
(:file "thot-threaded" :depends-on ("thot-simple"))
(:file "thot-epoll" :depends-on ("thot-threaded"))))