xref: /haiku/src/apps/mail/Jamfile (revision d9cebac2b77547b7064f22497514eecd2d047160)
1SubDir HAIKU_TOP src apps mail ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4AddSubDirSupportedPlatforms libbe_test ;
5
6if $(TARGET_PLATFORM) != haiku {
7	UsePublicHeaders mail ;
8}
9
10UsePrivateHeaders mail ;
11UsePrivateHeaders textencoding ;
12UsePrivateHeaders shared ;
13
14AddResources Mail : Mail.rdef pictures.rdef  ;
15Application Mail :
16	AutoTextControl.cpp
17	BmapButton.cpp
18	ButtonBar.cpp
19	ComboBox.cpp
20	Content.cpp
21	Enclosures.cpp
22	FindWindow.cpp
23	Header.cpp
24	MailApp.cpp
25	MailPopUpMenu.cpp
26	MailSupport.cpp
27	MailWindow.cpp
28	Prefs.cpp
29	QueryMenu.cpp
30	Signature.cpp
31	Status.cpp
32	Utilities.cpp
33	WIndex.cpp
34	Words.cpp
35	KUndoBuffer.cpp ;
36
37LinkAgainst Mail : be tracker $(TARGET_LIBSTDC++) libmail.so libtextencoding.so ;
38
39Package haiku-maildaemon-cvs :
40	Mail :
41	boot beos apps ;
42
43
44if ( $(TARGET_PLATFORM) = libbe_test ) {
45	HaikuInstall install-test-apps : $(HAIKU_APP_TEST_DIR) : Mail
46		: tests!apps ;
47}
48