xref: /haiku/src/kits/game/Jamfile (revision 51978af14a173e7fae0563b562be5603bc652aeb)
1SubDir OBOS_TOP src kits game ;
2
3UsePrivateHeaders interface ;
4
5SharedLibrary game :
6	# Public Game Kit
7	DirectWindow.cpp
8	WindowScreen.cpp
9	GameSound.cpp
10	SimpleGameSound.cpp
11	FileGameSound.cpp
12	PushGameSound.cpp
13	StreamingGameSound.cpp
14
15	# Internal Functionality
16	GameProducer.cpp
17	GameSoundBuffer.cpp
18	GameSoundDevice.cpp
19	GSUtility.cpp
20;
21
22# Hack to have DirectWindow.cpp include the R5 <Window .h> header.
23PrependObjectHdrs DirectWindow.cpp : /boot/develop/headers/be/interface ;
24
25LinkSharedOSLibs libgame.so :
26	be media
27;
28