Advertisement
Guest User

Untitled

a guest
Jul 6th, 2024
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.79 KB | None | 0 0
  1. (eval-when
  2.     (:compile-toplevel :load-toplevel :execute)
  3.   (pushnew #P"/Users/lspangler/quicklisp/local-projects/myproject/build/lib/" cffi:*FOREIGN-LIBRARY-DIRECTORIES*))
  4.  
  5. (defsystem "myproject"
  6.   :version "0.0.1"
  7.   :author ""
  8.   :license ""
  9.   :depends-on (deploy cffi cl-portaudio)
  10.   :components ((:module "src"
  11.                 :components
  12.                 ((:file "main" :depends-on (cl-portaudio)))))
  13.   :description ""
  14.   :in-order-to ((test-op (test-op "myproject/tests"))))
  15.  
  16. (defsystem "myproject/tests"
  17.   :author ""
  18.   :license ""
  19.   :depends-on ("myproject"
  20.                "rove")
  21.   :components ((:module "tests"
  22.                 :components
  23.                 ((:file "main"))))
  24.   :description "Test system for myproject"
  25.   :perform (test-op (op c) (symbol-call :rove :run c)))
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement