-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
cl-gltf.asd
29 lines (29 loc) · 1.06 KB
/
cl-gltf.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
28
29
(asdf:defsystem cl-gltf
:version "2.0.0"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "A library to parse and serialize the glTF file format."
:homepage "https://shirakumo.github.io/cl-gltf/"
:bug-tracker "https://github.com/shirakumo/cl-gltf/issues"
:source-control (:git "https://github.com/shirakumo/cl-gltf.git")
:serial T
:components ((:file "package")
(:file "element")
(:file "format")
(:file "accessor")
(:file "translations")
(:file "construction")
(:file "parser")
(:file "printer")
(:file "documentation"))
:depends-on (:documentation-utils
:trivial-extensible-sequences
:mmap
:com.inuoe.jzon
:cffi
:qbase64
:nibbles
:static-vectors
(:feature :sbcl (:require :sb-posix)))
:in-order-to ((asdf:test-op (asdf:test-op :cl-gltf-test))))