xref: /haiku/src/preferences/time/Jamfile (revision dfc8a217db488098641462dfc334dcc0f7d62456)
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	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_LIBSTDC++) $(HAIKU_LOCALE_LIBS)
32	: Time.rdef
33	;
34
35