-
Notifications
You must be signed in to change notification settings - Fork 7
/
cl-prevalence.asd
36 lines (35 loc) · 1.5 KB
/
cl-prevalence.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
35
36
;;;; -*- Mode: LISP -*-
;;;;
;;;; $Id$
;;;;
;;;; The CL-PREVALENCE ASDF system definition
;;;;
;;;; Copyright (C) 2003, 2004 Sven Van Caekenberghe, Beta Nine BVBA.
;;;;
;;;; You are granted the rights to distribute and use this software
;;;; as governed by the terms of the Lisp Lesser General Public License
;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
(defsystem "cl-prevalence"
:name "CL-PREVALENCE"
:author "Sven Van Caekenberghe <[email protected]>"
:version "6"
:maintainer "Alexander Artemenko <[email protected]>"
:licence "Lesser Lisp General Public License"
:description "Common Lisp Prevalence Package"
:long-description "Common Lisp Prevalence is an implementation of Object Prevalence for Common Lisp"
:depends-on ("moptilities"
"s-xml"
"s-sysdeps")
:components
((:module "src"
:components ((:file "package")
(:module "serialization"
:components ((:file "serialization")
(:file "xml" :depends-on ("serialization"))
(:file "sexp" :depends-on ("serialization")))
:depends-on ("package"))
(:file "prevalence" :depends-on ("serialization"))
(:file "managed-prevalence" :depends-on ("prevalence"))
(:file "master-slave" :depends-on ("prevalence"))
(:file "blob" :depends-on ("managed-prevalence")))))
:in-order-to ((test-op (test-op "cl-prevalence-test"))))