removed generate-selection-list in favor of a make-select-list
[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 ;;;; This file, part of CLSQL, is Copyright (c) 200d42 by Kevin M. Rosenberg
11 ;;;;
12 ;;;; CLSQL users are granted the rights to distribute and use this software
13 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
14 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
15 ;;;; *************************************************************************
16
17 (defpackage #:clsql-odbc-system (:use #:asdf #:cl))
18 (in-package #:clsql-odbc-system)
19
20 (defsystem clsql-odbc
21   :name "clsql-odbc"
22   :author "Kevin M. Rosenberg <kmr@debian.org>"
23   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
24   :licence "Lessor Lisp General Public License"
25   :description "Common Lisp SQL ODBC Driver"
26   :long-description "cl-sql-odbc package provides a database driver to the ODBC database system."
27
28   :depends-on (clsql clsql-uffi)
29   :components
30   ((:module :db-odbc
31             :components
32             ((:file "odbc-package")
33              (:file "odbc-loader" :depends-on ("odbc-package"))
34              (:file "odbc-constants" :depends-on ("odbc-loader"))
35              (:file "odbc-ff-interface" :depends-on ("odbc-constants"))
36              (:file "odbc-api" :depends-on ("odbc-ff-interface" "odbc-constants"))
37              (:file "odbc-dbi" :depends-on ("odbc-api"))
38              (:file "odbc-sql" :depends-on ("odbc-dbi"))))))
39