xref: /haiku/src/apps/deskbar/Jamfile (revision 1acbe440b8dd798953bec31d18ee589aa3f71b73)
1SubDir HAIKU_TOP src apps deskbar ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4AddSubDirSupportedPlatforms libbe_test ;
5
6UsePrivateHeaders app ;
7UsePrivateHeaders shared ;
8UsePrivateHeaders tracker ;
9SubDirHdrs $(HAIKU_TOP) src kits tracker ;
10
11AddResources Deskbar : Deskbar.rdef icon-freelogo.rdef icons.rdef ;
12
13SubDirC++Flags -DDB_ADDONS -DOPEN_TRACKER=1
14	-D_INCLUDES_CLASS_DEVICE_MAP=1
15	-D_SUPPORTS_RESOURCES=1
16	-D_SUPPORTS_FEATURE_SCRIPTING=1
17	-D_SHOW_CALENDAR_MENU_ITEM=1 ;
18
19Application Deskbar :
20	BarApp.cpp
21	BarMenuBar.cpp
22	BarMenuTitle.cpp
23	BarView.cpp
24	BarWindow.cpp
25	BeMenu.cpp
26	CalendarMenuItem.cpp
27	DeskBarUtils.cpp
28	ExpandoMenuBar.cpp
29	ShowHideMenuItem.cpp
30	StatusView.cpp
31	StatusViewShelf.cpp
32	TeamMenu.cpp
33	TeamMenuItem.cpp
34	TimeView.cpp
35	WindowMenu.cpp
36	WindowMenuItem.cpp
37	ResourceSet.cpp
38	Switcher.cpp
39	: be tracker
40	;
41
42if $(TARGET_PLATFORM) = libbe_test {
43	HaikuInstall install-test-apps : $(HAIKU_APP_TEST_DIR) : Deskbar
44		: tests!apps ;
45}
46