-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.options-and-mop.asd
45 lines (33 loc) · 1.81 KB
/
configuration.options-and-mop.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
37
38
39
40
41
42
43
44
45
;;;; configuration.options-and-mop.asd --- MOP integration.
;;;;
;;;; Copyright (C) 2013-2018 Jan Moringen
;;;;
;;;; Author: Jan Moringen <[email protected]>
(defsystem "configuration.options-and-mop"
:description "MOP-based configuration of CLOS instances."
:license "LLGPLv3" ; see COPYING file for details.
:author "Jan Moringen <[email protected]>"
:maintainer "Jan Moringen <[email protected]>"
:version (:read-file-form "version-string.sexp")
:depends-on ("alexandria"
(:version "let-plus" "0.2")
(:version "closer-mop" "1.0")
(:version "configuration.options" (:read-file-form "version-string.sexp")))
:components ((:module "src"
:components ((:file "mop"))))
:in-order-to ((test-op (test-op "configuration.options-and-mop/test"))))
(defsystem "configuration.options-and-mop/test"
:description "Unit tests for MOP integration."
:license "LLGPLv3" ; see COPYING file for details.
:author "Jan Moringen <[email protected]>"
:maintainer "Jan Moringen <[email protected]>"
:version (:read-file-form "version-string.sexp")
:depends-on ("alexandria"
(:version "let-plus" "0.2")
(:version "configuration.options-and-mop" (:read-file-form "version-string.sexp"))
(:version "fiveam" "1.3")
(:version "configuration.options/test" (:read-file-form "version-string.sexp")))
:components ((:module "test"
:components ((:file "mop"))))
:perform (test-op (operation component)
(uiop:symbol-call '#:configuration.options.mop.test '#:run-tests)))