forked from stumpwm/stumpwm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stumpwm.asd
59 lines (57 loc) · 1.85 KB
/
stumpwm.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
;;; -*- Mode: Lisp -*-
(defpackage :stumpwm-system
(:use :cl :asdf))
(in-package :stumpwm-system)
(defsystem :stumpwm
:name "StumpWM"
:author "Shawn Betts <[email protected]>"
:version "1.0.1"
:maintainer "David Bjergaard <[email protected]>"
;; :license "GNU General Public License"
:description "A tiling, keyboard driven window manager"
:serial t
:depends-on (#:alexandria
#:cl-ppcre
#:clx
#:sb-posix)
:components ((:file "package")
(:file "primitives")
(:file "wrappers")
(:file "pathnames")
(:file "font-rendering")
(:file "keysyms")
(:file "keytrans")
(:file "kmap")
(:file "input")
(:file "core")
(:file "command")
(:file "menu")
(:file "screen")
(:file "head")
(:file "group")
(:file "bindings")
(:file "events")
(:file "window")
(:file "floating-group")
(:file "tile-window")
(:file "tile-group")
(:file "window-placement")
(:file "message-window")
(:file "selection")
(:file "module")
(:file "ioloop")
(:file "timers")
(:file "stumpwm")
(:file "user")
(:file "interactive-keymap")
(:file "iresize")
(:file "help")
(:file "fdump")
(:file "time")
(:file "mode-line")
(:file "mode-line-formatters")
(:file "color")
(:file "wse")
;; keep this last so it always gets recompiled if
;; anything changes
(:file "version")))