Version 4.0.1
[clsql/s11.git] / clsql-odbc.asd
blob5913bede6092b975d60873a67b0a567cd7c39eff
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 ;;;; *************************************************************************
19 (defpackage #:clsql-odbc-system (:use #:asdf #:cl))
20 (in-package #:clsql-odbc-system)
22 (defsystem clsql-odbc
23   :name "clsql-odbc"
24   :author "Kevin M. Rosenberg <kmr@debian.org>"
25   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
26   :licence "Lessor Lisp General Public License"
27   :description "Common Lisp SQL ODBC Driver"
28   :long-description "cl-sql-odbc package provides a database driver to the ODBC database system."
30   :depends-on (uffi clsql clsql-uffi)
31   :components
32   ((:module :db-odbc
33             :components
34             ((:file "odbc-package")
35              (:file "odbc-loader" :depends-on ("odbc-package"))
36              (:file "odbc-constants" :depends-on ("odbc-loader"))
37              (:file "odbc-ff-interface" :depends-on ("odbc-constants"))
38              (:file "odbc-api" :depends-on ("odbc-ff-interface" "odbc-constants"))
39              (:file "odbc-dbi" :depends-on ("odbc-api"))
40              (:file "odbc-sql" :depends-on ("odbc-dbi"))))))