X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql.asd;h=366859a88bf108d44d3df9a78dbeb1accf520734;hp=cebcee1a1177e220870768d8372ad0433d13d752;hb=fa32c4233b4a02ae631602dbb0a234ab10df8aaf;hpb=7f0e4a65d1b425f2fa58fc7cce8296c1a6c52c2f diff --git a/clsql.asd b/clsql.asd index cebcee1..366859a 100644 --- a/clsql.asd +++ b/clsql.asd @@ -2,20 +2,24 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; Name: clsql-classic.asd +;;;; Name: clsql.asd ;;;; Purpose: System definition for CLSQL-CLASSIC ;;;; Authors: Marcus Pearce and Kevin M. Rosenberg ;;;; Created: March 2004 ;;;; -;;;; $Id: clsql-classic.asd 8847 2004-04-07 14:38:14Z kevin $ +;;;; $Id$ ;;;; ;;;; 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. ;;;; ************************************************************************* -(asdf:defsystem #:clsql-usql - :name "CLSQL-USQL" +(in-package #:cl-user) +(defpackage #:clsql-system (:use #:asdf #:cl)) +(in-package #:clsql-system) + +(defsystem #:clsql + :name "CLSQL" :author "" :maintainer "" :version "" @@ -50,3 +54,7 @@ a functional and an object oriented interface." (:file "objects" :depends-on ("metaclasses"))) :depends-on (:functional)))))) + +(defmethod perform ((o test-op) (c (eql (find-system 'clsql)))) + (operate 'load-op 'clsql-tests) + (operate 'test-op 'clsql-tests :force t))