Initial commit.
[existenz.git] / existenz-common.asd
1 ;;; -*- mode: lisp; syntax: common-lisp; package: cl-user; coding: utf-8-unix; -*-
2
3 (in-package #:cl-user)
4 \f
5 (asdf:defsystem #:existenz-common
6   #+asdf-unicode :encoding #+asdf-unicode :utf-8
7   :depends-on (#:logv
8                #:iterate
9                #:bordeaux-threads
10                #:anaphora
11                #:metabang-bind
12                #:utils-frahm-threaded
13                #:cl-tuples
14                ;; #:iolib
15                #:png-read
16                #:trivial-garbage
17                #:distlisp)
18   :serial T
19   :components
20   ((:module common
21     :components ((:file "package")
22                  (:file "options")
23                  (:file "syntax")
24                  (:file "entity")
25                  (:file "transformation")))))