summaryrefslogtreecommitdiff
path: root/cl-mdns.asd
diff options
context:
space:
mode:
authorsoukev <soukev@soukev.xyz>2026-06-06 19:59:46 +0200
committersoukev <soukev@soukev.xyz>2026-06-06 19:59:46 +0200
commit1b05818535abdda01a2bbe8aacd8f535c5c7c74c (patch)
treef5074d8039f13bc558b6a8f5f1c1fd17824c9b23 /cl-mdns.asd
initial project file
Diffstat (limited to 'cl-mdns.asd')
-rw-r--r--cl-mdns.asd24
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)))