You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
42 lines
1.0 KiB
(asdf:defsystem #:tint |
|
:description "A library for working with colors." |
|
:author ("Michael Fiano <mail@mfiano.net>" |
|
"Catherine Tower <catherine@towernet.dev>") |
|
:license "MIT" |
|
:homepage "https://git.mfiano.net/mfiano/tint" |
|
:encoding :utf-8 |
|
:depends-on |
|
(#:graph |
|
#:lparallel |
|
#:mfiano-utils |
|
#:origin) |
|
:in-order-to ((asdf:test-op (asdf:test-op #:tint.test))) |
|
:pathname "src" |
|
:serial t |
|
:components |
|
((:file "package") |
|
(:file "constants") |
|
(:file "conditions") |
|
(:file "context") |
|
(:file "worker-state") |
|
(:file "thread-pool") |
|
(:file "mixin-storage") |
|
(:file "mixin-alpha") |
|
(:file "mixin-rgb") |
|
(:file "model") |
|
(:file "space") |
|
(:file "illuminant") |
|
(:file "chromatic-adaptation") |
|
(:file "gamma") |
|
(:file "pool") |
|
(:file "graph") |
|
(:file "constructors") |
|
(:file "operations") |
|
(:module "definitions" |
|
:components |
|
((:file "illuminants") |
|
(:file "chromatic-adaptation-methods") |
|
(:file "models") |
|
(:file "spaces"))) |
|
(:file "convert") |
|
(:file "converters")))
|
|
|