-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhatis.asd
More file actions
28 lines (24 loc) · 763 Bytes
/
Copy pathhatis.asd
File metadata and controls
28 lines (24 loc) · 763 Bytes
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
(defsystem :hatis
:description "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
(:trivial-features ;; base
:alexandria ;; base
:trivia ;; matching
:arrows ;; syntax
:chanl ;; CSP multhithreading
:access ;; nice way to access nested structs elements
:wayflan ;; best lisp wayland client
:protocols)
:components
((:module "hatis"
:components
((:file "classes")
(:file "utils" :depends-on ("classes"))
(:file "wayland/handlers" :depends-on ("classes" "utils"))
(:file "core" :depends-on ("utils" "classes" "wayland/handlers"))))))