-
Notifications
You must be signed in to change notification settings - Fork 0
/
mon-test.asd
48 lines (38 loc) · 1.08 KB
/
mon-test.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
46
47
;;; :FILE mon-systems/mon-test.asd
;;; ==============================
;;; ==============================
;;
;; (translate-logical-pathname "MON:MON-SYSTEMS;tests")
;;
;;; ==============================
(defpackage #:mon-test-system (:use :common-lisp :asdf))
(in-package #:mon-test-system)
(defsystem :mon-test
;; :name ""
:author "MON KEY"
:maintainer "MON KEY"
:license "BSD"
:description "MON tests."
:version "1.0.0"
:pathname "tests/"
:serial t
:depends-on
;; :DARWIN this seems to have been causing circular dependencies WAS (:mon #+sbcl :sb-rt
( #+sbcl :sb-rt
;; :NOTE Need to add a package-nickname for :sb-rt for following:
#-sbcl :rt)
:components
((:file "package")
(:file "test")
(:file "timing")
(:file "testing")))
(defmethod asdf:perform :after ((op asdf:load-op) (system (eql (asdf:find-system :mon-test))))
(pushnew :mon-test cl:*features*))
;;; ==============================
;; Local Variables:
;; indent-tabs-mode: nil
;; show-trailing-whitespace: nil
;; mode: lisp-interaction
;; End:
;;; ==============================
;;; EOF