summaryrefslogtreecommitdiff
path: root/sarcasm.asd
diff options
context:
space:
mode:
Diffstat (limited to 'sarcasm.asd')
-rw-r--r--sarcasm.asd12
1 files changed, 12 insertions, 0 deletions
diff --git a/sarcasm.asd b/sarcasm.asd
new file mode 100644
index 0000000..dc8b4e8
--- /dev/null
+++ b/sarcasm.asd
@@ -0,0 +1,12 @@
+;;;; sarcasm.asd
+
+(asdf:defsystem #:sarcasm
+ :description "WASM runtime in Common Lisp"
+ :author "Colin <colin@cicadas.surf>"
+ :license "GPL3"
+ :version "0.0.1"
+ :depends-on (#:alexandria #:yacc)
+ :pathname "src/"
+ :serial t
+ :components ((:file "util")
+ (:file "ast")))