-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminecraftify.asd
More file actions
32 lines (30 loc) · 894 Bytes
/
minecraftify.asd
File metadata and controls
32 lines (30 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(defsystem :minecraftify
:name :minecraftify
:version "0.1"
:author "Vasily Postnicov <shamaz.mazum@gmail.com>"
:license "2-clause BSD"
:serial t
:pathname "src"
:components ((:file "package")
(:file "faces")
(:file "vox2mesh")
(:file "io"))
:depends-on (:alexandria
:serapeum
:numpy-npy))
(defsystem :minecraftify/app
:name :minecraftify/app
:serial t
:pathname "app"
:components ((:file "package")
(:file "main"))
:depends-on (:minecraftify
:command-line-parse)
:build-operation program-op
:build-pathname "minecraftify"
:entry-point "minecraftify/app:main")
#+sb-core-compression
(defmethod asdf:perform ((o asdf:image-op) (c asdf:system))
(uiop:dump-image (asdf:output-file o c)
:executable t
:compression -1))