-
Notifications
You must be signed in to change notification settings - Fork 7
/
iup.asd
33 lines (33 loc) · 1.03 KB
/
iup.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
(defsystem #:iup
:description "CFFI bindings to the IUP Portable User Interface library"
:author "Matthew Kennedy <[email protected]>"
:homepage "https://github.com/lispnik/iup"
:licence "MIT"
:version (:read-file-line "version.txt")
:serial t
:components
((:static-file "classesdb.lisp-sexp")
(:module "iup"
:serial t
:components ((:file "packages")
(:file "constants")
(:file "key")
(:file "callback")
(:file "global-callback")
(:file "classes")
(:file "config")
(:file "attributes")
(:file "status")
(:file "masks")
(:file "globals")
(:file "iup")
(:file "misc"))))
:depends-on (#:iup-cffi
#:iup-utils
#:cffi
#:alexandria
#:trivial-arguments
#:split-sequence
#:parse-number
#:pffft
#:tecgraf-base))