From 1b05818535abdda01a2bbe8aacd8f535c5c7c74c Mon Sep 17 00:00:00 2001 From: soukev Date: Sat, 6 Jun 2026 19:59:46 +0200 Subject: initial project file --- cl-mdns.asd | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 cl-mdns.asd 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 " + :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))) -- cgit v1.2.3