Преглед изворни кода

Move WindowServer into Servers.

Andreas Kling пре 6 година
родитељ
комит
d17a91f185

+ 1 - 1
Applications/IRCClient/Makefile

@@ -16,7 +16,7 @@ STANDARD_FLAGS = -std=c++17
 WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough
 FLAVOR_FLAGS = -fno-exceptions -fno-rtti
 OPTIMIZATION_FLAGS = -Os
-INCLUDE_FLAGS = -I../.. -I. -I../../LibC
+INCLUDE_FLAGS = -I../../Servers -I../.. -I. -I../../LibC
 
 DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND
 

+ 2 - 2
Kernel/makeall.sh

@@ -14,8 +14,8 @@ $make_cmd -C ../LibM clean && \
 $make_cmd -C ../LibM clean && \
 $make_cmd -C ../Servers/LookupServer clean && \
 $make_cmd -C ../Servers/LookupServer && \
-$make_cmd -C ../WindowServer clean && \
-$make_cmd -C ../WindowServer && \
+$make_cmd -C ../Servers/WindowServer clean && \
+$make_cmd -C ../Servers/WindowServer && \
 $make_cmd -C ../LibGUI clean && \
 $make_cmd -C ../LibGUI && \
 $make_cmd -C ../Userland clean && \

+ 1 - 1
Kernel/sync.sh

@@ -89,7 +89,7 @@ cp -v ../Applications/TextEditor/TextEditor mnt/bin/TextEditor
 cp -v ../Applications/IRCClient/IRCClient mnt/bin/IRCClient
 ln -s IRCClient mnt/bin/irc
 cp -v ../Servers/LookupServer/LookupServer mnt/bin/LookupServer
-cp -v ../WindowServer/WindowServer mnt/bin/WindowServer
+cp -v ../Servers/WindowServer/WindowServer mnt/bin/WindowServer
 cp -v kernel.map mnt/
 sh sync-local.sh
 umount mnt

+ 1 - 1
LibGUI/Makefile

@@ -56,7 +56,7 @@ STANDARD_FLAGS = -std=c++17
 WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough
 FLAVOR_FLAGS = -fno-exceptions -fno-rtti
 OPTIMIZATION_FLAGS = -Os
-INCLUDE_FLAGS = -I../LibC -I.. -I.
+INCLUDE_FLAGS = -I../LibC -I../Servers -I.. -I.
 
 DEFINES = -DSERENITY -DUSERLAND -DSANITIZE_PTRS -DLIBGUI
 

+ 0 - 0
WindowServer/.gitignore → Servers/WindowServer/.gitignore


+ 9 - 9
WindowServer/Makefile → Servers/WindowServer/Makefile

@@ -1,11 +1,11 @@
 SHAREDGRAPHICS_OBJS = \
-    ../SharedGraphics/Painter.o \
-    ../SharedGraphics/Font.o \
-    ../SharedGraphics/Rect.o \
-    ../SharedGraphics/GraphicsBitmap.o \
-    ../SharedGraphics/CharacterBitmap.o \
-    ../SharedGraphics/DisjointRectSet.o \
-    ../SharedGraphics/Color.o
+    ../../SharedGraphics/Painter.o \
+    ../../SharedGraphics/Font.o \
+    ../../SharedGraphics/Rect.o \
+    ../../SharedGraphics/GraphicsBitmap.o \
+    ../../SharedGraphics/CharacterBitmap.o \
+    ../../SharedGraphics/DisjointRectSet.o \
+    ../../SharedGraphics/Color.o
 
 WINDOWSERVER_OBJS = \
     WSMessageReceiver.o \
@@ -28,8 +28,8 @@ STANDARD_FLAGS = -std=c++17
 WARNING_FLAGS = -Wextra -Wall -Wundef -Wcast-qual -Wwrite-strings -Wimplicit-fallthrough
 FLAVOR_FLAGS = -fno-exceptions -fno-rtti
 OPTIMIZATION_FLAGS = -Os
-INCLUDE_FLAGS = -I.. -I. -I../LibC
-LDFLAGS = -L../LibC
+INCLUDE_FLAGS = -I.. -I../.. -I. -I../../LibC
+LDFLAGS = -L../../LibC
 
 DEFINES = -DSERENITY -DSANITIZE_PTRS -DUSERLAND
 

+ 0 - 0
WindowServer/WSAPITypes.h → Servers/WindowServer/WSAPITypes.h


+ 0 - 0
WindowServer/WSClientConnection.cpp → Servers/WindowServer/WSClientConnection.cpp


+ 0 - 0
WindowServer/WSClientConnection.h → Servers/WindowServer/WSClientConnection.h


+ 0 - 0
WindowServer/WSClipboard.cpp → Servers/WindowServer/WSClipboard.cpp


+ 0 - 0
WindowServer/WSClipboard.h → Servers/WindowServer/WSClipboard.h


+ 0 - 0
WindowServer/WSMenu.cpp → Servers/WindowServer/WSMenu.cpp


+ 0 - 0
WindowServer/WSMenu.h → Servers/WindowServer/WSMenu.h


+ 0 - 0
WindowServer/WSMenuBar.cpp → Servers/WindowServer/WSMenuBar.cpp


+ 0 - 0
WindowServer/WSMenuBar.h → Servers/WindowServer/WSMenuBar.h


+ 0 - 0
WindowServer/WSMenuItem.cpp → Servers/WindowServer/WSMenuItem.cpp


+ 0 - 0
WindowServer/WSMenuItem.h → Servers/WindowServer/WSMenuItem.h


+ 0 - 0
WindowServer/WSMessage.h → Servers/WindowServer/WSMessage.h


+ 0 - 0
WindowServer/WSMessageLoop.cpp → Servers/WindowServer/WSMessageLoop.cpp


+ 0 - 0
WindowServer/WSMessageLoop.h → Servers/WindowServer/WSMessageLoop.h


+ 0 - 0
WindowServer/WSMessageReceiver.cpp → Servers/WindowServer/WSMessageReceiver.cpp


+ 0 - 0
WindowServer/WSMessageReceiver.h → Servers/WindowServer/WSMessageReceiver.h


+ 0 - 0
WindowServer/WSScreen.cpp → Servers/WindowServer/WSScreen.cpp


+ 0 - 0
WindowServer/WSScreen.h → Servers/WindowServer/WSScreen.h


+ 0 - 0
WindowServer/WSWindow.cpp → Servers/WindowServer/WSWindow.cpp


+ 0 - 0
WindowServer/WSWindow.h → Servers/WindowServer/WSWindow.h


+ 0 - 0
WindowServer/WSWindowManager.cpp → Servers/WindowServer/WSWindowManager.cpp


+ 0 - 0
WindowServer/WSWindowManager.h → Servers/WindowServer/WSWindowManager.h


+ 0 - 0
WindowServer/WSWindowSwitcher.cpp → Servers/WindowServer/WSWindowSwitcher.cpp


+ 0 - 0
WindowServer/WSWindowSwitcher.h → Servers/WindowServer/WSWindowSwitcher.h


+ 0 - 0
WindowServer/WSWindowType.h → Servers/WindowServer/WSWindowType.h


+ 0 - 0
WindowServer/main.cpp → Servers/WindowServer/main.cpp