-
Notifications
You must be signed in to change notification settings - Fork 0
/
hddl.asd
22 lines (19 loc) · 891 Bytes
/
hddl.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
;;; -------------------------------------------------------------------------
;;; Copyright 2011-2016, SIFT, LLC, Robert P. Goldman, and Ugur Kuter
;;; Available under the BSD 3-clause license, see license.txt
;;;---------------------------------------------------------------------------
(defpackage :sift-hddl-asd
(:use :common-lisp :asdf))
(in-package :sift-hddl-asd)
(defsystem :hddl
:version (:read-file-form "version.lisp-expr")
:license "BSD 3-clause (see license.txt)"
:serial t
:depends-on ((:version "pddl" "1.1") "pddl-utils" "cl-ppcre")
:pathname "hddl/"
:description "This system provides a package into which HDDL constructs
can be read, so that they can be shared across different programs manipulating
HDDL."
:components ((:file "package") ; Package definition.
(:file "hddl-pprint") ; Pretty print and read functions
))