changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/gui/gui.asd

changeset 698: 96958d3eb5b0
parent: aac665e2f5bf
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; gui.asd --- GUI subsystem
2 (defsystem :gui
3  :depends-on (:std
4  :log :obj :xkb :parse
5  (:feature :wl :wayflan) (:feature :wl :wayflan-client)
6  (:feature :x11 :clx) (:feature :x11 :stumpwm))
7  :components ((:file "pkg")
8  (:file "err")
9  (:file "server")
10  (:file "client")
11  (:module "wm"
12  :components
13  ((:file "pkg")
14  #+wl
15  (:module "wl"
16  :components
17  ((:file "pkg")
18  (:file "kbd")
19  (:file "shell")))
20  #+x11
21  (:module "x11"
22  :components ((:file "pkg")))))
23  (:file "ext"))
24  :in-order-to ((test-op (test-op "gui/tests"))))
25 
26 (defsystem :gui/tests
27  :depends-on (:rt :gui)
28  :components ((:file "tests"))
29  :perform (test-op (o c) (symbol-call :rt :do-tests :gui)))