From c999b377b2ddd7dc51d0ae7ab639ebb0cf70f051 Mon Sep 17 00:00:00 2001 From: bd Date: Sat, 15 Mar 2025 22:08:13 -0400 Subject: initial commit --- rva.asd | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 rva.asd (limited to 'rva.asd') diff --git a/rva.asd b/rva.asd new file mode 100644 index 0000000..a3f8d5b --- /dev/null +++ b/rva.asd @@ -0,0 +1,23 @@ +(defsystem "rva" + ;; :author "" + ;; :license "" + :version "0.1" + :homepage "https://github.com/bdunahu/rva" + :source-control (:git "git@github.com:bdunahu/rva.git") + :depends-on ("uiop") + :components ((:module "src" + :serial t + :components ((:file "lex") + (:file "rva")))) + :long-description + #.(uiop:read-file-string + (uiop:subpathname *load-pathname* "README.md")) + :in-order-to ((test-op (test-op "rva/tests"))) + :build-operation "program-op" + :build-pathname "bin/rva" + :entry-point "rva::main") + +(defmethod asdf:perform ((o asdf:image-op) (c asdf:system)) + (uiop:dump-image (asdf:output-file o c) + :executable t + :compression t)) -- cgit v1.2.3