blob: 2ebed6e020152751467b651ec0091f4847b10ac0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | (asdf:defsystem wajir
  :version "0.0.1"
  :depends-on (:cl-smtp
               :dexador)
  :components ((:module "src"
                :serial t
                :components ((:file "package")
                             (:file "main"))))
  :build-operation "program-op"
  :build-pathname "wajir"
  :entry-point "wajir")
#+sb-core-compression
(defmethod asdf:perform ((o asdf:image-op) (c asdf:system))
  (uiop:dump-image (asdf:output-file o c) :executable t :compression t))
 |