(defsystem "cl-mdns" :author "soukev " :license "GPL 3.0" :version "0.1.0" :description "" :depends-on ("nibbles" "usocket" "iolib" "fsocket") :components ((:module "src" :serial t :components ( (:file "packet") (:file "client") (:file "publisher") ))) :in-order-to ((test-op (test-op "cl-mdns/tests")))) (defsystem "cl-mdns/tests" :description "Test suit for cl-mdns." :depends-on ("cl-mdns" "fiveam") :components ((:module "t" :serial t :components ((:file "main") (:file "client-tests")))) :perform (test-op (o c) (uiop:symbol-call :fiveam :run-all-tests)))