-
Notifications
You must be signed in to change notification settings - Fork 0
/
pddl.asd
22 lines (19 loc) · 886 Bytes
/
pddl.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,2023 SIFT, LLC, Robert P. Goldman, and Ugur Kuter
;;; Available under the BSD 3-clause license, see license.txt
;;;---------------------------------------------------------------------------
(defpackage :sift-pddl-asd
(:use :common-lisp :asdf))
(in-package :sift-pddl-asd)
(defsystem :pddl
:version (:read-file-form "version.lisp-expr")
:license "BSD 3-clause (see license.txt)"
:serial t
:pathname "pddl/"
:depends-on ("iterate")
:description "This system provides a package into which PDDL constructs
can be read, so that they can be shared across different programs manipulating
PDDL. Also provides a PDDL pretty-printer."
:components ((:file "package") ; Package definition.
(:file "pddl-pprint") ; Pretty print functions
))