summaryrefslogtreecommitdiff
path: root/rva.asd
blob: a3f8d5be09c48cb54bb0ba0fcfad92e91d1f7426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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))