-
Notifications
You must be signed in to change notification settings - Fork 266
/
stumpwm.asd
93 lines (88 loc) · 2.98 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
;;; -*- Mode: Lisp -*-
(defpackage :stumpwm-system
(:use :cl :asdf))
(in-package :stumpwm-system)
(defsystem :stumpwm
:name "StumpWM"
:author "Shawn Betts <sabetts@vcn.bc.ca>"
:version "23.11"
:maintainer "David Bjergaard <dbjergaard@gmail.com>"
;; :license "GNU General Public License"
:description "A tiling, keyboard driven window manager"
:serial t
:depends-on (#:alexandria
#:cl-ppcre
#:clx
#:sb-posix
#:sb-introspect
#:dynamic-mixins-swm)
:components ((:file "package")
(:file "debug")
(:file "primitives")
(:file "wrappers")
(:file "pathnames")
(:file "font-rendering")
(:file "keysyms")
(:file "keytrans")
(:file "kmap")
(:file "input")
(:file "core")
(:file "command")
(:file "menu-declarations")
(:file "menu-definitions")
(: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")
(:file "dynamic-window")
(:file "dynamic-group")
(:file "remap-keys")
(:file "manual")
(:file "minor-modes")
(:file "replace-class")
;; keep this last so it always gets recompiled if
;; anything changes
(:file "version"))
:in-order-to ((test-op (test-op "stumpwm/tests"))))
(defsystem "stumpwm/build"
:depends-on ("stumpwm")
:build-operation program-op
:build-pathname "stumpwm"
:entry-point "stumpwm:main"
:components ((:file "main")))
(defsystem "stumpwm/tests"
:name "StumpWM tests"
:serial t
:depends-on ("stumpwm"
"fiasco")
:pathname "tests/"
:components ((:file "package")
(:file "kmap")
(:file "pathnames")
(:file "mode-line-formatters"))
:perform (test-op (o c)
(uiop/package:symbol-call "FIASCO" "RUN-TESTS" 'stumpwm-tests)))
;; Quicklisp prefers systems in the central registry over its own systems
(push (asdf:system-relative-pathname "stumpwm" "dynamic-mixins/") asdf:*central-registry*)