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