1SubDir HAIKU_TOP src tests kits interface layout widget_layout_test ;
2
3SetSubDirSupportedPlatforms haiku libbe_test ;
4
5SEARCH_SOURCE += [ FDirName $(SUBDIR) tests ] ;
6
7SimpleTest WidgetLayoutTest :
8	WidgetLayoutTest.cpp
9
10	AbstractButton.cpp
11	CheckBox.cpp
12	GroupView.cpp
13	RadioButton.cpp
14	StringView.cpp
15	Test.cpp
16	TestView.cpp
17	TwoDimensionalSliderView.cpp
18	View.cpp
19	ViewContainer.cpp
20	WrapperView.cpp
21
22	BoxTest.cpp
23	ButtonTest.cpp
24	CheckBoxTest.cpp
25	ControlTest.cpp
26	ListViewTest.cpp
27	MenuBarTest.cpp
28	MenuFieldTest.cpp
29	MenuTest.cpp
30	RadioButtonTest.cpp
31	ScrollBarTest.cpp
32	SliderTest.cpp
33	TextControlTest.cpp
34	TextViewTest.cpp
35	:
36	be [ TargetLibsupc++ ] [ TargetLibstdc++ ]
37;
38
39if $(TARGET_PLATFORM) = libbe_test {
40	HaikuInstall install-test-apps : $(HAIKU_APP_TEST_DIR)
41		: WidgetLayoutTest
42		: tests!apps ;
43}
44