aboutsummaryrefslogtreecommitdiff
path: root/cantedraw.asd
blob: c3dcc4ecc3be60039889acd7eeb8a83e2b14b041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(asdf:defsystem :cantedraw
  :depends-on (:alexandria)
  :components ((:file "packages")
               (:file "lib.macros")
               (:file "lib.functions")
               (:file "model")
               (:file "main"))
  :build-operation "program-op"
  :build-pathname "bin/cantedraw"
  :entry-point "cantedraw.main:start")

#+sb-core-compression
(defmethod asdf:perform ((o asdf:image-op) (c asdf:system))
  (uiop:dump-image (asdf:output-file o c)
                   :executable t
                   :compression 9))