diff options
author | bd <bdunahu@operationnull.com> | 2025-03-15 22:08:13 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-15 22:08:13 -0400 |
commit | c999b377b2ddd7dc51d0ae7ab639ebb0cf70f051 (patch) | |
tree | e069331e1a23ace107b8da78d58e1d0acea3f515 /rva.asd |
initial commit
Diffstat (limited to 'rva.asd')
-rw-r--r-- | rva.asd | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -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)) |