-
Notifications
You must be signed in to change notification settings - Fork 0
/
hddl-utils.asd
34 lines (29 loc) · 1.24 KB
/
hddl-utils.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
32
33
34
;;; -------------------------------------------------------------------------
;;; Copyright 2011-2016, SIFT, LLC, Robert P. Goldman, and Ugur Kuter
;;; Available under the BSD 3-clause license, see license.txt
;;;---------------------------------------------------------------------------
(defpackage :sift-hddl-utils-asd
(:use :common-lisp :asdf))
(in-package :sift-hddl-utils-asd)
(defsystem :hddl-utils
:name "SIFT-HDDL-UTILS"
:license "BSD 3-clause (see license.txt)"
:version (:read-file-form "version.lisp-expr")
:depends-on (hddl pddl-utils)
:in-order-to ((test-op (test-op hddl-utils/tests)))
:pathname "hddl-utils/"
:components ((:file "package") ; Package definition.
(:file "decls" :depends-on ("package"))
(:file "commons" :depends-on ("package" "decls"))
(:file "hddl-checker" :depends-on ("commons"))
))
(defsystem :hddl-utils/tests
:depends-on (pddl-utils fiveam)
:defsystem-depends-on (fiveam-asdf)
:version (:read-file-form "version.lisp-expr")
:serial t
:class :fiveam-tester-system
:test-names ((#:hddl-tests . :hddl-utils-tests))
:pathname "hddl-utils/tests/"
:components ((:file "hddl-data")
(:file "tests")))