-
Notifications
You must be signed in to change notification settings - Fork 1
/
cl-prolog2.asd
26 lines (26 loc) · 966 Bytes
/
cl-prolog2.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
;;;; Autogenerated ASD file for system "CL-PROLOG2"
;;;; In order to regenerate it, run update-asdf
;;;; from shell (see https://github.com/phoe-krk/asd-generator)
;;;; For those who do not have update-asdf,
;;;; run `ros install asd-generator` (if you have roswell installed)
;;;; There are also an interface available from lisp:
;;;; (asd-generator:regen &key im-sure)
(defsystem cl-prolog2
:version "0.1"
:author "Masataro Asai"
:mailto "guicho2.71828@gmail.com"
:license "MIT"
:depends-on (:trivia
:alexandria
:trivia.quasiquote
:external-program
:trivial-garbage)
:pathname "src"
:serial t
:components ((:file "package")
(:file "compiler-macro")
(:file "printers")
(:file "interpreter")
(:file "util"))
:description "Common Interface to the ISO prolog implementations from Common Lisp"
:in-order-to ((test-op (test-op :cl-prolog2.test))))