-
Notifications
You must be signed in to change notification settings - Fork 3
/
journal.asd
36 lines (34 loc) · 1.46 KB
/
journal.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
;;;; -*-mode: Lisp; coding: utf-8;-*-
;;; See JOURNAL::@JOURNAL-MANUAL for the user guide.
(asdf:defsystem :journal
:licence "MIT, see COPYING."
:version "0.1.0"
:author "Gábor Melis <[email protected]>"
:homepage "https://github.com/melisgl/journal"
:bug-tracker "https://github.com/melisgl/journal/issues"
:source-control (:git "https://github.com/melisgl/journal.git")
:description "A library built around explicit execution traces for
logging, tracing, testing and persistence."
:depends-on (#:alexandria #:bordeaux-threads #:local-time
#:mgl-pax #:trivial-features #:trivial-garbage
(:feature (:not (:or :abcl :allegro :sbcl :cmucl)) #:osicat)
(:feature :sbcl #:sb-posix))
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "interrupt")
(:file "journal")
(:file "doc"))))
:in-order-to ((asdf:test-op (asdf:test-op "journal/test"))))
(asdf:defsystem :journal/test
:licence "MIT, see COPYING."
:version "0.0.1"
:author "Gábor Melis <[email protected]>"
:description "Tests for Journal."
:depends-on (#:alexandria #:journal #:try)
:components ((:module "test"
:serial t
:components ((:file "package")
(:file "test-journal"))))
:perform (asdf:test-op (o s)
(uiop:symbol-call '#:journal-test '#:test)))