-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbodge-nuklear.asd
36 lines (32 loc) · 1.13 KB
/
bodge-nuklear.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
(asdf:defsystem :bodge-nuklear
:description "Wrapper over Nuklear IM GUI library"
:version "1.0.0"
:author "Pavel Korolev"
:mailto "[email protected]"
:license "MIT"
:depends-on (:alexandria :cffi :cffi-c-ref :bodge-nuklear-bindings)
:serial t
:pathname "src/"
:components ((:file "packages")
(:file "nuklear")))
(asdf:defsystem :bodge-nuklear/wrapper
:description "Wrapper over Nuklear IM GUI library"
:version "1.0.0"
:author "Pavel Korolev"
:mailto "[email protected]"
:license "MIT"
:depends-on (:alexandria :cffi :claw :claw-utils :cffi-c-ref)
:serial t
:components ((:file "src/claw")
(:module :nuklear-lib :pathname "src/lib/nuklear/")))
(asdf:defsystem :bodge-nuklear/example
:description "bodge-nuklear basic example"
:version "1.0.0"
:author "Pavel Korolev"
:mailto "[email protected]"
:license "MIT"
:depends-on (:alexandria :cl-opengl :bodge-host
:bodge-glad :nuklear-blob :bodge-nuklear :nuklear-renderer-blob
:bodge-nuklear-renderer :bordeaux-threads :cl-muth :bodge-libc-essentials)
:pathname "src/"
:components ((:file "example")))