r9471: 5 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
[clsql.git] / clsql-odbc.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:     clsql-odbc.asd
6 ;;;; Purpose:  ASDF definition file for CLSQL ODBC backend
7 ;;;; Author:   Kevin M. Rosenberg
8 ;;;; Created:  April 2004
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 200d42 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-odbc-system (:use #:asdf #:cl))
20 (in-package #:clsql-odbc-system)
21
22 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
23 (defsystem clsql-odbc
24   :name "clsql-odbc"
25   :author "Kevin M. Rosenberg <kmr@debian.org>"
26   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
27   :licence "Lessor Lisp General Public License"
28   :description "Common Lisp SQL ODBC Driver"
29   :long-description "cl-sql-odbc package provides a database driver to the ODBC database system."
30
31   :depends-on (uffi clsql clsql-uffi)
32   :components
33   ((:module :db-odbc
34             :components
35             ((:file "odbc-package")
36              (:file "odbc-loader" :depends-on ("odbc-package"))
37              (:file "odbc-constants" :depends-on ("odbc-loader"))
38              (:file "odbc-ff-interface" :depends-on ("odbc-constants"))
39              (:file "odbc-api" :depends-on ("odbc-ff-interface" "odbc-constants"))
40              (:file "odbc-dbi" :depends-on ("odbc-api"))
41              (:file "odbc-sql" :depends-on ("odbc-dbi"))))))
42