diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-05-24 19:32:46 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-24 19:32:46 +0200 |
commit | ad908f13951a80553ac6591cab8f32c7b2132589 (patch) | |
tree | 5bdbfab4ebe9cc0730312de577507971a122b3b8 /Servers/WindowServer/Makefile | |
parent | 508007f1dd11de4f154788e1c85940f086390b70 (diff) | |
download | serenity-ad908f13951a80553ac6591cab8f32c7b2132589.zip |
WindowServer: Factor out compositing from WSWindowManager into WSCompositor.
This is far from finished and the two classes are awkwardly grabbing at each
other's innards, but here's a first step in the right direction.
Diffstat (limited to 'Servers/WindowServer/Makefile')
-rw-r--r-- | Servers/WindowServer/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Servers/WindowServer/Makefile b/Servers/WindowServer/Makefile index 6cfd85e28f..2756f391a9 100644 --- a/Servers/WindowServer/Makefile +++ b/Servers/WindowServer/Makefile @@ -26,6 +26,7 @@ WINDOWSERVER_OBJS = \ WSWindowFrame.o \ WSButton.o \ WSCPUMonitor.o \ + WSCompositor.o \ main.o APP = WindowServer |