-
Notifications
You must be signed in to change notification settings - Fork 0
/
hddl-to-json.asd
31 lines (26 loc) · 1.04 KB
/
hddl-to-json.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
;;; -------------------------------------------------------------------------
;;; Copyright 2023, Robert P. Goldman and SIFT, LLC
;;; Available under the BSD 3-clause license, see license.txt
;;;---------------------------------------------------------------------------
(defpackage :sift-hddl-to-json-asd
(:use :common-lisp :asdf))
(in-package :sift-hddl-to-json-asd)
(load-system :fiveam-asdf)
(defsystem :hddl-to-json
:name "SIFT-HDDL-TO-JSON"
:license "BSD 3-clause (see license.txt)"
:version (:read-file-form "version.lisp-expr")
:depends-on (hddl-utils cl-json iterate)
:in-order-to ((test-op (test-op hddl-to-json/tests)))
:pathname "hddl-utils/"
:components ((:file "json")))
(defsystem :hddl-to-json/tests
:depends-on (hddl-to-json fiveam cl-ppcre)
:defsystem-depends-on (fiveam-asdf)
:version (:read-file-form "version.lisp-expr")
:serial t
:class :fiveam-tester-system
:test-names ((#:hddl-json-tests . :hddl-json-tests)
)
:pathname "hddl-utils/tests/"
:components ((:file "json-tests")))