summaryrefslogtreecommitdiff
path: root/cl-mdns.asd
blob: 6cb35a522c3742a9af3ebe6086586168a4cbbea3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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)))