diff options
Diffstat (limited to 'rva.asd')
-rw-r--r-- | rva.asd | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -4,16 +4,19 @@ (asdf:defsystem #:rva ;; :author "" ;; :license "" - :version "0.1" + :version "0.3" :homepage "https://github.com/bdunahu/rva" :description "Assembler for the RISC-V[ECTOR] mini-ISA." :source-control (:git "git@github.com:bdunahu/rva.git") :depends-on (:uiop - :clingon) + :clingon + :trivia) :components ((:module "src" :serial t :components ((:file "package") (:file "util") + (:file "lex") + (:file "parse") (:file "main")))) :long-description #.(uiop:read-file-string @@ -33,7 +36,9 @@ :serial t :components ((:file "package") (:file "main") - (:file "util")))) + (:file "util") + (:file "lex") + (:file "parse")))) :perform (test-op (o s) (uiop:symbol-call :rva-tests :test-rva))) (defmethod asdf:perform ((o asdf:image-op) (c asdf:system)) |