;;;; SYSTEM.asd ;;;; System definitions for SYSTEM ;;;; AUTHOR: ;; --------------------------------------------------------------------- ;;; Main System Definition ;; --------------------------------------------------------------------- (asdf:defsystem "SYSTEM" :build-operation program-op :components ((:file "src/SYSTEM")) :in-order-to ((asdf:test-op (asdf:test-op "SYSTEM/test")))) ;; --------------------------------------------------------------------- ;;; Test Suite System Definition ;; --------------------------------------------------------------------- (asdf:defsystem "SYSTEM/test" :depends-on ("SYSTEM" "fiveam") :components ((:file "test/SYSTEM-test")) :perform (asdf:test-op (o c) (uiop:symbol-call :fiveam '#:run-all-tests)))