-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbinpack.asd
28 lines (25 loc) · 988 Bytes
/
binpack.asd
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
(asdf:defsystem :binpack
:description "Rectangle packer for sprite/texture atlases"
:version "0.0.1"
:author "Bart Botta <00003b at gmail.com>, Pavel Korolev <dev@borodust.org>, Michael Fiano <mail@mfiano.net>"
:license "MIT"
:depends-on (alexandria)
:serial t
:in-order-to ((asdf:test-op (asdf:test-op binpack-test)))
:components ((:file "packages")
(:file "common")
(:file "maxrects")
(:file "binpack")))
(asdf:defsystem :binpack/2
:description "Rectangle packer for sprite/texture atlases (new API)"
:version "0.0.1"
:author "Bart Botta <00003b at gmail.com>, Pavel Korolev <dev@borodust.org>, Michael Fiano <mail@mfiano.net>"
:license "MIT"
:depends-on (alexandria)
:serial t
:in-order-to ((asdf:test-op (asdf:test-op binpack-test/2)))
:components ((:file "packages")
(:file "common")
(:file "maxrects")
(:file "chazelle")
(:file "binpack2")))