Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.47 KB | None | 0 0
  1. (asdf:defsystem #:abcd
  2.   :serial t
  3.   :depends-on (#:alexandria #:anaphora #:cl-ppcre)
  4.   :components ((:file "package")
  5.                (:file "src/main"))
  6.   :in-order-to ((test-op (test-op "abcd/tests"))))
  7.  
  8.  
  9. (asdf:defsystem #:abcd/tests
  10.   :depends-on (#:abcd #:rove)
  11.   :components ((:file "package")
  12.                (:module "tests"
  13.                         :components
  14.                         ((:file "main"))))
  15.   :perform (test-op (op c) (symbol-call :rove '#:run c)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement