(defsystem "net.entf.graphics" :depends-on ("net.entf.graphics/window" "net.entf.graphics/draw")) (defsystem "net.entf.graphics/window" :pathname #P"window/" :depends-on ("net.entf.graphics/window/wayland") :components ((:file "package"))) (defsystem "net.entf.graphics/window/protocol" :pathname #P"window/" :depends-on ("bordeaux-threads") :components ((:file "protocol"))) (defsystem "net.entf.graphics/window/wayland" :pathname #P"window/wayland/" :depends-on ("net.entf.graphics/window/protocol" "wayflan" "alexandria" "posix-shm") :components ((:file "package") (:file "protocols" :depends-on ("package")) (:file "wayland" :depends-on ("package" "protocols")) (:module "wayland-protocols" :components ((:static-file "xdg-decoration-unstable-v1.xml"))))) (defsystem "net.entf.graphics/draw" :pathname #P"draw/" :depends-on ("net.entf.graphics/draw/protocol") :components ((:file "api"))) (defsystem "net.entf.graphics/draw/protocol" :pathname #P"draw/" :components ((:file "package") (:file "operations" :depends-on ("package")) (:file "protocol" :depends-on ("package"))))