-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbc-test.asd
38 lines (30 loc) · 957 Bytes
/
dbc-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
;; DEPRECATED now that we have ASDF3
(defpackage #:dbc-test-system (:use :common-lisp :asdf))
(in-package #:dbc-test-system)
(asdf:defsystem :dbc-test
;; :name ""
;; :author "MON KEY"
;; :maintainer "MON KEY"
;; :license
:description "DBC tests."
:version "1.0.0"
:pathname "dbc-tests/"
;; (make-pathname :name nil :type nil :defaults *load-truename*))
:components
((:file "package")
(:file "tests")
(:file "dbc-uuid-profile"))
:depends-on (:dbc :mon-test
#+sbcl :sb-rt
;; :NOTE Need to add a package-nickname for :sb-rt for following:
#-sbcl :rt
))
(defmethod asdf:perform :after ((op asdf:load-op) (system (eql (asdf:find-system :dbc-test))))
(pushnew :dbc-test cl:*features*))
;; Local Variables:
;; indent-tabs-mode: nil
;; show-trailing-whitespace: nil
;; mode: lisp-interaction
;; End:
;;; ==============================
;;; EOF