-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from Hellseher/master
Update asd file
- Loading branch information
Showing
1 changed file
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,14 @@ | |
;;;; | ||
;;;; Author: Moskvitin Andrey <[email protected]> | ||
|
||
(defsystem mssql | ||
:depends-on (#:cffi #:iterate #:garbage-pools #:parse-number) | ||
(defsystem "mssql" | ||
:description "A Common Lisp library for interacting with MS SQL Server | ||
databases." | ||
:version "0.0.3" | ||
:author "Andrey Moskvitin <[email protected]>" | ||
:homepage "https://github.com/archimag/cl-mssql" | ||
:license "GPLv2" | ||
:depends-on ("cffi" "iterate" "garbage-pools" "parse-number") | ||
:components | ||
((:module :src | ||
:components | ||
|
@@ -15,4 +21,4 @@ | |
(:file "connection" :depends-on ("mssql")) | ||
(:file "query" :depends-on ("connection")) | ||
(:file "execute" :depends-on ("connection")) | ||
(:file "remote" :depends-on ("query")))))) | ||
(:file "remote" :depends-on ("query")))))) |