Last change
on this file was
2,
checked in by Erik Enge, 21 years ago
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
703 bytes
|
Line | |
---|
1 | ;;;; $Id: cl-irc-test.asd 2 2004-01-05 14:13:03Z eenge $ |
---|
2 | ;;;; $Source$ |
---|
3 | |
---|
4 | ;;;; See the LICENSE file for licensing information. |
---|
5 | |
---|
6 | (in-package #:cl-user) |
---|
7 | |
---|
8 | (defpackage #:cl-irc-test-system |
---|
9 | (:use #:cl #:asdf)) |
---|
10 | |
---|
11 | (in-package #:cl-irc-test-system) |
---|
12 | |
---|
13 | (defsystem cl-irc-test |
---|
14 | :name "cl-irc-test" |
---|
15 | :author "Erik Enge" |
---|
16 | :version "0.1.0" |
---|
17 | :licence "MIT" |
---|
18 | :description "Tests for the cl-irc system" |
---|
19 | :depends-on |
---|
20 | #+sbcl (:sb-bsd-sockets :split-sequence :rt :cl-irc) |
---|
21 | #-sbcl (:split-sequence :rt :cl-irc) |
---|
22 | :components ((:file "package") |
---|
23 | (:file "test-parse-message" |
---|
24 | :depends-on ("package")) |
---|
25 | (:file "test-protocol" |
---|
26 | :depends-on ("test-parse-message")))) |
---|
Note: See
TracBrowser
for help on using the repository browser.