-
Notifications
You must be signed in to change notification settings - Fork 2
/
ui.asd
27 lines (23 loc) · 887 Bytes
/
ui.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
(defsystem :hatis.ui
:description "UI for the Hackable Text Input System"
:version "0.0.1"
:license "GPL-v3"
:author "Grigory Shepelev"
:homepage "https://github.com/shegeley/hatis"
:source-control (:git "https://github.com/shegeley/hatis")
:pathname #P"src/"
:defsystem-depends-on (:hatis
:trivial-features ;; base
:alexandria ;; base
:trivia ;; matching
;; gtk
:cl-gtk4
:cl-glib
;; -> ->>
:arrows
;; CSP multhithreading
:chanl
;; nice way to access nested structs elements
:access)
:components ((:file "hatis/utils")
(:file "hatis/ui/gtk" (:depends-on "hatis/utils"))))