Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (eval-when
- (:compile-toplevel :load-toplevel :execute)
- (pushnew #P"/Users/lspangler/quicklisp/local-projects/myproject/build/lib/" cffi:*FOREIGN-LIBRARY-DIRECTORIES*))
- (defsystem "myproject"
- :version "0.0.1"
- :author ""
- :license ""
- :depends-on (deploy cffi cl-portaudio)
- :components ((:module "src"
- :components
- ((:file "main" :depends-on (cl-portaudio)))))
- :description ""
- :in-order-to ((test-op (test-op "myproject/tests"))))
- (defsystem "myproject/tests"
- :author ""
- :license ""
- :depends-on ("myproject"
- "rove")
- :components ((:module "tests"
- :components
- ((:file "main"))))
- :description "Test system for myproject"
- :perform (test-op (op c) (symbol-call :rove :run c)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement