summaryrefslogtreecommitdiff
path: root/sarcasm.asd
blob: 0569a5db2618bbf5f689bd4dfa6e23c2799f1a4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;;; 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 #:closer-mop)
  :pathname "src/"
  :serial t
  :components ((:file "util")
               (:file "types")
               (:file "raw-instrs")
               (:file "instr")
               (:file "ast")))