xref: /haiku/src/preferences/time/Jamfile (revision 5889cb5e7e8e7bfea6072ddfe881f55d364a0cf0)
1SubDir HAIKU_TOP src preferences time ;
2
3UsePrivateHeaders interface locale shared [ FDirName libroot time ] ;
4UsePrivateSystemHeaders ;
5UseBuildFeatureHeaders icu ;
6
7local sources =
8	AnalogClock.cpp
9	BaseView.cpp
10	ClockView.cpp
11	DateTimeEdit.cpp
12	SectionEdit.cpp
13	DateTimeView.cpp
14	NetworkTimeView.cpp
15	ntp.cpp
16	Time.cpp
17	TimeSettings.cpp
18	TimeWindow.cpp
19	TimeZoneListItem.cpp
20	TimeZoneListView.cpp
21	TZDisplay.cpp
22	ZoneView.cpp
23	;
24
25
26Includes [ FGristFiles $(sources) ] : [ BuildFeatureAttribute icu : headers ] ;
27	# Dependency needed to trigger downloading/unzipping the package before
28	# compiling the files.
29
30Preference Time
31	: $(sources)
32	: be bnetapi network shared [ TargetLibstdc++ ] localestub
33	: Time.rdef
34	;
35
36DoCatalogs Time :
37	x-vnd.Haiku-Time
38	:
39	ClockView.cpp
40	DateTimeView.cpp
41	NetworkTimeView.cpp
42	ntp.cpp
43	Time.cpp
44	TimeWindow.cpp
45	TimeZoneListView.cpp
46	ZoneView.cpp
47	;
48