diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-31 22:09:10 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-31 22:09:10 +0200 |
commit | 2334ffcbf8d621c0d4feaa6c1323efc0c130e3dc (patch) | |
tree | ce326ef483dd82fa85dafdb3d96560bf635de3d3 /Servers/WindowServer/Makefile | |
parent | 25f28a54a131c4aa188ba2c4c453c1b1648d02c6 (diff) | |
download | serenity-2334ffcbf8d621c0d4feaa6c1323efc0c130e3dc.zip |
WindowServer: Add a WSCursor class (a bitmap and a hotspot.)
Also import a bunch of cursors I drew. Only the default ("arrow") cursor is
ever used so far.
Diffstat (limited to 'Servers/WindowServer/Makefile')
-rw-r--r-- | Servers/WindowServer/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Servers/WindowServer/Makefile b/Servers/WindowServer/Makefile index 0b8dcafbf2..3590168ae4 100644 --- a/Servers/WindowServer/Makefile +++ b/Servers/WindowServer/Makefile @@ -21,12 +21,13 @@ WINDOWSERVER_OBJS = \ WSClientConnection.o \ WSWindowSwitcher.o \ WSClipboard.o \ + WSCursor.o \ main.o APP = WindowServer OBJS = $(SHAREDGRAPHICS_OBJS) $(WINDOWSERVER_OBJS) -STANDARD_FLAGS = -std=c++17 +STANDARD_FLAGS = -std=c++17 -Wno-sized-deallocation WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough FLAVOR_FLAGS = -fno-exceptions -fno-rtti OPTIMIZATION_FLAGS = -Os |