summaryrefslogtreecommitdiff
path: root/sarcasm.asd
blob: dc8b4e88841a917414798bf028667bb5411903ee (plain)
1
2
3
4
5
6
7
8
9
10
11
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")))