-
Notifications
You must be signed in to change notification settings - Fork 13
/
clsql-oracle.asd
42 lines (38 loc) · 1.65 KB
/
clsql-oracle.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: clsql-oracle.asd
;;;; Purpose: ASDF definition file for CLSQL Oracle backend
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Aug 2002
;;;;
;;;; $Id$
;;;;
;;;; This file is part of CLSQL.
;;;;
;;;; CLSQL users are granted the rights to distribute and use this software
;;;; as governed by the terms of the Lisp Lesser GNU Public License
;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
;;;; *************************************************************************
(defpackage #:clsql-oracle-system (:use #:asdf #:cl))
(in-package #:clsql-oracle-system)
;;; System definition
(defsystem clsql-oracle
:name "clsql-oracle"
:author "Kevin M. Rosenberg <[email protected]>"
:maintainer "Kevin M. Rosenberg <[email protected]>"
:licence "Lessor Lisp General Public License"
:description "Common Lisp SQL Oracle Driver"
:long-description "cl-sql-oracle package provides a database driver to the Oracle database system."
:depends-on (clsql-uffi)
:components
((:module :db-oracle
:components
((:file "oracle-package")
(:file "oracle-loader" :depends-on ("oracle-package"))
(:file "foreign-resources" :depends-on ("oracle-package"))
(:file "oracle-constants" :depends-on ("oracle-package"))
(:file "oracle-api" :depends-on ("oracle-constants" "oracle-loader"))
(:file "oracle-sql" :depends-on ("oracle-api" "foreign-resources"))
(:file "oracle-objects" :depends-on ("oracle-sql"))))))