xref: /haiku/src/add-ons/translators/rtf/Jamfile (revision 9949213a25979d177b420bc71891c2bff02a331d)
1SubDir OBOS_TOP src add-ons translators rtf ;
2
3# Include code from shared translator directory
4SEARCH_SOURCE += [ FDirName $(OBOS_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
22LinkSharedOSLibs RTF-Translator : be translation ;
23
24Package haiku-translationkit-cvs :
25	RTF-Translator
26	: boot home config add-ons Translators
27	;
28