-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvk.asd
45 lines (43 loc) · 1.71 KB
/
vk.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
(defsystem vk
:version "3.1.1"
:license "MIT"
:description "Common Lisp bindings for the Vulkan API."
:author "Lukas Herzberger <herzberger.lukas at gmail.com>"
:maintainer "Lukas Herzberger <herzberger.lukas at gmail.com>"
:homepage "https://jolifantobambla.github.io/vk/"
:bug-tracker "https://github.com/JolifantoBambla/vk/issues"
:source-control (:git "https://github.com/JolifantoBambla/vk.git")
:depends-on (cffi alexandria)
:components
((:module "src"
:serial t
:components ((:file "package")
(:file "vk-alloc")
(:file "vulkan-bindings")
(:file "vulkan-api-constants")
(:file "vulkan-types")
(:file "vk-handle")
(:file "vk-types")
(:file "vk-constructors")
(:file "vulkan-define-conditions")
(:file "vulkan-errors")
(:file "vulkan-extra-types")
(:file "vk-translate-to-foreign")
(:file "vk-expand-to-foreign")
(:file "vk-translate-from-foreign")
(:file "vk-expand-from-foreign")
(:file "vulkan-commands")
(:file "vk-base")
(:file "vk-bindings")
(:file "vk-commands")
(:file "vk-pretty-printers")
(:file "vk-utils-common")
(:file "vk-utils-with-resource"))))
:in-order-to ((test-op (test-op vk/tests))))
(defsystem vk/tests
:depends-on (:vk
:rove)
:defsystem-depends-on (:rove)
:components ((:module "test"
:components ((:file "translators"))))
:perform (test-op :after (op c) (uiop:symbol-call :rove :run c)))