r8821: integrate usql support
[clsql.git] / clsql.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql.asd
6 ;;;; Purpose:       System definition for 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-system (:use #:asdf #:cl))
20 (in-package #:clsql-system)
21
22 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
23 (defsystem clsql
24   :name "clsql"
25   :author "Kevin Rosenberg <kevin@rosenberg.net>"
26   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
27   :version "1.5.x"
28   :licence "Lessor Lisp General Public License"
29   :description "Common Lisp SQL Interface Library"
30   :long-description "cl-sql package provides the high-level interface for the CLSQL system."
31   
32   :components
33   ((:module :sql
34             :components
35             ((:file "package")
36              (:file "sql" :depends-on ("package"))
37              (:file "functional" :depends-on ("sql"))
38              (:file "usql" :depends-on ("sql"))
39              )))
40   :depends-on (:clsql-base)
41   )
42
43 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
44 (defmethod perform ((o test-op) (c (eql (find-system :clsql))))
45   (oos 'load-op 'clsql-tests)
46   (oos 'test-op 'clsql-tests))