forked from Shirakumo/cl-fbx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-fbx.asd
23 lines (23 loc) · 865 Bytes
/
cl-fbx.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(asdf:defsystem cl-fbx
:version "1.0.0"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "Bindings to ufbx, a simple and free FBX model decoding library"
:homepage "https://Shirakumo.github.io/cl-fbx/"
:bug-tracker "https://github.com/Shirakumo/cl-fbx/issues"
:source-control (:git "https://github.com/Shirakumo/cl-fbx.git")
:serial T
:components ((:file "package")
(:file "low-level")
(:file "conditions")
(:file "wrapper")
(:file "file")
(:file "documentation"))
:depends-on (:cffi
:trivial-features
:trivial-garbage
:trivial-extensible-sequences
:float-features
:static-vectors
:documentation-utils))