Refactored find-all and build-object to be more readable, shorter and
[clsql.git] / clsql-sqlite.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-sqlite.asd
6 ;;;; Purpose:       ASDF file for CLSQL SQLite backend
7 ;;;; Programmer:    Aurelio Bignoli
8 ;;;; Date Started:  Aug 2003
9 ;;;;
10 ;;;; This file, part of CLSQL, is Copyright (c) 2003 by Aurelio Bignoli
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-sqlite-system (:use #:asdf #:cl))
18 (in-package #:clsql-sqlite-system)
19
20 (defsystem clsql-sqlite
21   :name "cl-sql-sqlite"
22   :author "Aurelio Bignoli <aurelio@bignoli.it>"
23   :maintainer "Aurelio Bignoli"
24   :licence "Lessor Lisp General Public License"
25   :description "Common Lisp SQLite Driver"
26   :long-description "cl-sql-sqlite package provides a database driver to SQLite database library."
27
28
29   :depends-on (clsql clsql-uffi)
30   :components
31   ((:module :db-sqlite
32             :components
33             ((:file "sqlite-package")
34              (:file "sqlite-loader" :depends-on ("sqlite-package"))
35              (:file  "sqlite-api" :depends-on ("sqlite-loader"))
36              (:file "sqlite-sql" :depends-on ("sqlite-api"))))))