r7061: initial property settings
[clsql.git] / clsql-base.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-base.asd
6 ;;;; Purpose:       ASDF definition file for Base CLSQL
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; CLSQL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (defpackage #:clsql-base-system (:use #:asdf #:cl))
20 (in-package #:clsql-base-system)
21
22 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
23 (defsystem clsql-base
24   :name "cl-sql-base"
25   :author "Kevin Rosenberg <kevin@rosenberg.net>"
26   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
27   :licence "Lessor Lisp General Public License"
28   :description "Common Lisp SQL Base Package"
29   :long-description "cl-sql-base package provides the low-level interface for the database drivers."
30
31   :components
32   ((:module :base
33             :components
34             ((:file "cmucl-compat")
35              (:file "package")
36              (:file "utils" :depends-on ("package"))
37              (:file "classes" :depends-on ("package"))
38              (:file "conditions" :depends-on ("classes"))
39              (:file "db-interface" :depends-on ("conditions"))
40              (:file "initialize" :depends-on ("db-interface"))))))
41