xref: /haiku/src/tests/servers/app/painter/Jamfile (revision 71452e98334eaac603bf542d159e24788a46bebb)
1SubDir HAIKU_TOP src tests servers app painter ;
2
3UseLibraryHeaders agg ;
4UsePrivateHeaders interface ;
5UsePrivateHeaders [ FDirName servers app ] ;
6UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing ] ;
7UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter ] ;
8UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter drawing_modes ] ;
9UseHeaders [ FDirName $(HAIKU_TOP) src servers app drawing Painter font_support ] ;
10UseBuildFeatureHeaders freetype ;
11
12SimpleTest Painter :
13	BitmapBuffer.cpp
14	BitmapView.cpp
15	main.cpp
16	Painter.cpp
17	ShapeConverter.cpp
18	Transformable.cpp
19	DrawingModeFactory.cpp
20	# already included in libagg.a build
21	#agg_font_freetype.cpp
22	AGGTextRenderer.cpp
23	FontFamily.cpp
24	#FontManager.cpp
25	FontServer.cpp
26	#TextRenderer.cpp
27	PatternHandler.cpp
28	RGBColor.cpp
29	ServerFont.cpp
30	SystemPalette.cpp
31	ColorUtils.cc
32	: be libagg.a libfreetype.so textencoding ;
33
34SEARCH on [ FGristFiles
35	ColorUtils.cc
36	]
37	= [ FDirName $(HAIKU_TOP) src kits interface ] ;
38
39SEARCH on [ FGristFiles
40	PatternHandler.cpp
41	FontFamily.cpp
42	FontServer.cpp
43	RGBColor.cpp
44	ServerFont.cpp
45	SystemPalette.cpp
46	]
47	= [ FDirName $(HAIKU_TOP) src servers app ] ;
48
49SEARCH on [ FGristFiles
50	BitmapBuffer.cpp
51	PatternHandler.cpp
52	]
53	= [ FDirName $(HAIKU_TOP) src servers app drawing ] ;
54
55SEARCH on [ FGristFiles
56	Painter.cpp
57	ShapeConverter.cpp
58	Transformable.cpp
59	]
60	= [ FDirName $(HAIKU_TOP) src servers app drawing Painter ] ;
61
62SEARCH on [ FGristFiles
63	DrawingModeFactory.cpp
64	]
65	= [ FDirName $(HAIKU_TOP) src servers app drawing Painter drawing_modes ] ;
66
67SEARCH on [ FGristFiles
68#	agg_font_freetype.cpp
69	AGGTextRenderer.cpp
70	FontManager.cpp
71	TextRenderer.cpp
72	]
73	= [ FDirName $(HAIKU_TOP) src servers app drawing Painter font_support ] ;
74
75