xref: /haiku/src/preferences/time/Jamfile (revision e0ef64750f3169cd634bb2f7a001e22488b05231)
1SubDir HAIKU_TOP src preferences time ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4
5UsePrivateHeaders 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	Time.cpp
16	TimeSettings.cpp
17	TimeWindow.cpp
18	TimeZoneListItem.cpp
19	TZDisplay.cpp
20	ZoneView.cpp
21	;
22
23
24SubDirSysHdrs $(HAIKU_ICU_HEADERS) ;
25Includes [ FGristFiles $(sources) ] : $(HAIKU_ICU_HEADERS_DEPENDENCY) ;
26	# Dependency needed to trigger downloading/unzipping the package before
27	# compiling the files.
28
29Preference Time
30	: $(sources)
31	: be libshared.a $(TARGET_LIBSUPC++) $(HAIKU_LOCALE_LIBS)
32	: Time.rdef
33	;
34
35