This brings the app server proto6 into the game. It doesn't compile completely though and I don't even know, if all the stuff in the subdirs is really needed. DarkWyrm?

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@48 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2002-07-10 19:24:36 +00:00
parent d820b0ec87
commit b01bedd574
6 changed files with 78 additions and 0 deletions

4
src/servers/Jamfile Normal file
View File

@ -0,0 +1,4 @@
SubDir OBOS_TOP src servers ;
SubInclude OBOS_TOP src servers app ;

4
src/servers/app/Jamfile Normal file
View File

@ -0,0 +1,4 @@
SubDir OBOS_TOP src servers app ;
SubInclude OBOS_TOP src servers app proto6 ;

View File

@ -0,0 +1,35 @@
SubDir OBOS_TOP src servers app proto6 ;
Server OBAppServer :
# Misc. Sources
BeDecorator.cpp
ColorUtils.cc
DebugTools.cpp
Decorator.cpp
PortLink.cpp
YMakDecorator.cpp
# Operating Classes
AppServer.cpp
Desktop.cpp
Layer.cpp
ServerApp.cpp
ServerBitmap.cpp
ServerCursor.cpp
ServerWindow.cpp
SystemPalette.cpp
WindowBorder.cpp
# Display Modules
DisplayDriver.cpp
ScreenDriver.cpp
SecondDriver.cpp
ViewDriver.cpp
;
LinkSharedOSLibs OBAppServer : be root game translation stdc++.r4 ;
SubInclude OBOS_TOP src servers app proto6 driverharness ;
SubInclude OBOS_TOP src servers app proto6 router ;
SubInclude OBOS_TOP src servers app proto6 testobapp ;

View File

@ -0,0 +1,13 @@
SubDir OBOS_TOP src servers app proto6 driverharness ;
App DriverHarness :
<$(SOURCE_GRIST)>AppServer.cpp
<$(SOURCE_GRIST)>DebugTools.cpp
<$(SOURCE_GRIST)>DHServerBitmap.cpp
<$(SOURCE_GRIST)>DirectDriver.cpp
<$(SOURCE_GRIST)>DisplayDriver.cpp
<$(SOURCE_GRIST)>PortLink.cpp
<$(SOURCE_GRIST)>ServerCursor.cpp
<$(SOURCE_GRIST)>ViewDriver.cpp
;
LinkSharedOSLibs DriverHarness : be root game tracker translation stdc++.r4 ;

View File

@ -0,0 +1,9 @@
SubDir OBOS_TOP src servers app proto6 router ;
SubDirHdrs [ FDirName $(OBOS_TOP) src servers app proto6 ] ;
Addon router : input_server :
<src!servers!app!proto6>../PortLink.cpp
router.cpp
;
LinkSharedOSLibs router : be root /system/servers/input_server ;

View File

@ -0,0 +1,13 @@
SubDir OBOS_TOP src servers app proto6 testobapp ;
#SubDirHdrs [ FDirName $(OBOS_TOP) src servers app proto6 ] ;
App OBApplication :
<$(SOURCE_GRIST)>DebugTools.cpp
<$(SOURCE_GRIST)>OBApplication.cpp
<$(SOURCE_GRIST)>OBTestApp.cpp
<$(SOURCE_GRIST)>OBView.cpp
<$(SOURCE_GRIST)>OBWindow.cpp
<$(SOURCE_GRIST)>PortLink.cpp
;
LinkSharedOSLibs OBApplication : be stdc++.r4 ;