xref: /haiku/src/add-ons/translators/rtf/Jamfile (revision ea3f7d3d8d3ec4e4a589491e9d67517426a4d367)
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	: true
25;
26
27Package haiku-translationkit-cvs :
28	RTF-Translator
29	: boot home config add-ons Translators
30	;
31