xref: /haiku/src/servers/notification/Jamfile (revision 2b76973fa2401f7a5edf68e6470f3d3210cbcff3)
1SubDir HAIKU_TOP src servers notification ;
2
3UsePrivateHeaders notification ;
4
5Server notification_server :
6	AppGroupView.cpp
7	NotificationServer.cpp
8	NotificationView.cpp
9	NotificationWindow.cpp
10	: be translation $(TARGET_LIBSTDC++) libnotification.a localestub
11	: notification_server.rdef
12;
13
14DoCatalogs notification_server :
15	x-vnd.Haiku-notification_server
16	:
17	NotificationServer.cpp
18	NotificationView.cpp
19	NotificationWindow.cpp
20;
21
22# Stuff shared with the preflet
23StaticLibrary libnotification.a :
24	AppUsage.cpp
25	NotificationReceived.cpp
26	Notifications.cpp
27;
28
29Depends notification_server : libnotification.a ;
30