diff options
| -rw-r--r-- | cl-mdns.asd | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cl-mdns.asd b/cl-mdns.asd new file mode 100644 index 0000000..6cb35a5 --- /dev/null +++ b/cl-mdns.asd @@ -0,0 +1,24 @@ +(defsystem "cl-mdns" + :author "soukev <soukev@soukev.xyz>" + :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))) |
