-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheventbus.asd
28 lines (26 loc) · 1022 Bytes
/
eventbus.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
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(defsystem :eventbus
:author "noloop <[email protected]>"
:maintainer "noloop <[email protected]>"
:license "GPLv3"
:version "0.1.0"
:homepage "https://github.com/noloop/eventbus"
:bug-tracker "https://github.com/noloop/eventbus/issues"
:source-control (:git "[email protected]:noloop/eventbus.git")
:description "An event bus in Common Lisp."
:components ((:module "src"
:components
((:file "package")
(:file "eventbus" :depends-on ("package")))))
:in-order-to ((test-op (test-op "eventbus/test"))))
(defsystem :eventbus/test
:author "noloop <[email protected]>"
:maintainer "noloop <[email protected]>"
:license "GPLv3"
:description "eventbus Test."
:depends-on (:eventbus :simplet)
:defsystem-depends-on (:simplet-asdf)
:components ((:module "test"
:components
((:test-file "eventbus-test"))))
:perform (test-op (op c) (symbol-call :simplet '#:run)))