|
@@ -5,11 +5,21 @@
|
5
|
5
|
:author "Lily Carpenter <lily-license@azrazalea.net>"
|
6
|
6
|
:license "BSD 3-clause"
|
7
|
7
|
:serial t
|
8
|
|
- :depends-on ("cl-autowrap")
|
|
8
|
+ :depends-on ("cl-autowrap" "cl-plus-c")
|
9
|
9
|
:components ((:module :autowrap-spec
|
10
|
10
|
:pathname "spec"
|
11
|
11
|
:components
|
12
|
12
|
((:static-file "BearLibTerminal.h")))
|
13
|
13
|
(:file "package")
|
14
|
14
|
(:file "library")
|
|
15
|
+ (:file "autowrap")
|
15
|
16
|
(:file "bearlibterminal")))
|
|
17
|
+
|
|
18
|
+(asdf:defsystem #:bearlibeterminal/examples
|
|
19
|
+ :description "simple examples to demonstrate common usage of bearlibterminal."
|
|
20
|
+ :author "Lily Carpenter <lily-license@azrazalea.net>"
|
|
21
|
+ :license "BSD 3-clause"
|
|
22
|
+ :depends-on (:bearlibterminal)
|
|
23
|
+ :pathname "examples"
|
|
24
|
+ :serial t
|
|
25
|
+ :components ((:file "hello-world")))
|