xref: /haiku/src/add-ons/translators/rtf/Jamfile (revision 1acbe440b8dd798953bec31d18ee589aa3f71b73)
1SubDir HAIKU_TOP src add-ons translators rtf ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4
5# Include code from shared translator directory
6SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src add-ons translators shared ] ;
7
8# It's called RTF-Translator (with a dash) to differentiate it from the
9# RTFTranslator that comes with Gobe Productive (that doesn't support
10# STXT or plain text files output).
11
12Translator RTF-Translator :
13	# RTFTranslator classes
14	main.cpp
15	RTFTranslator.cpp
16	ConfigView.cpp
17	RTF.cpp
18	convert.cpp
19
20	# shared classes
21	TranslatorWindow.cpp
22
23	: be translation
24;
25
26Package haiku-translationkit-cvs :
27	RTF-Translator
28	: boot home config add-ons Translators
29	;
30