File: simple-date.asd

package info (click to toggle)
cl-postmodern 20180430-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 788 kB
  • sloc: lisp: 7,411; makefile: 4
file content (29 lines) | stat: -rw-r--r-- 946 bytes parent folder | download | duplicates (2)
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
(defsystem "simple-date"
  :components
  ((:module "simple-date"
            :components ((:file "simple-date"))))
  :in-order-to ((test-op (test-op "simple-date/tests"))))

(defsystem "simple-date/tests"
  :depends-on ("fiveam" "simple-date")
  :components
  ((:module "simple-date"
            :components ((:file "tests"))))
  :perform (test-op (o c)
             (uiop:symbol-call :fiveam '#:run! :simple-date)))

(defsystem "simple-date/postgres-glue"
  :depends-on ("simple-date" "cl-postgres")
  :components
  ((:module "simple-date"
            :components
            ((:file "cl-postgres-glue")))))

#|
;; The definitions below should work, unlike the bogus method they replace;
;; but I recommend instead explicit dependency on simple-date/postgres-glue.
(load-system "asdf-system-connections")
(defsystem-connection "simple-date/with-postgres"
  :requires ("simple-date" "cl-postgres")
  :depends-on ("simple-date/postgres-glue"))
|#