fork of https://github.com/jorams/birch with SSL patch
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

22 lines
1.0 KiB

(asdf:defsystem #:birch
:description "A simple Common Lisp IRC client library"
:author "Joram Schrijver <i@joram.io>"
:license "MIT"
:version "1.0.1"
:depends-on (#:split-sequence #:usocket #:flexi-streams #:alexandria #:cl+ssl)
:pathname "src"
:components ((:file "replies")
(:file "parse")
(:file "ctcp")
(:file "connection")
(:file "commands" :depends-on ("connection"))
(:file "events" :depends-on ("connection" "commands"))
(:file "init" :depends-on ("connection" "parse" "commands"))
(:file "package" :depends-on ("replies"
"parse"
"ctcp"
"connection"
"commands"
"events"
"init")))
:in-order-to ((test-op (test-op :birch.test))))