summaryrefslogtreecommitdiff
path: root/rva.asd
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-03-15 22:08:13 -0400
committerbd <bdunahu@operationnull.com>2025-03-15 22:08:13 -0400
commitc999b377b2ddd7dc51d0ae7ab639ebb0cf70f051 (patch)
treee069331e1a23ace107b8da78d58e1d0acea3f515 /rva.asd
initial commit
Diffstat (limited to 'rva.asd')
-rw-r--r--rva.asd23
1 files changed, 23 insertions, 0 deletions
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))