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