xref: /haiku/src/tests/kits/interface/layout/widget_layout_test/Jamfile (revision 21527c4e77cb6db8533b7c75ca444de1a7f9204a)
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	ScrollBarTest.cpp
31	SliderTest.cpp
32	:
33	be
34;
35
36if $(TARGET_PLATFORM) = libbe_test {
37	HaikuInstall install-test-apps : $(HAIKU_APP_TEST_DIR)
38		: WidgetLayoutTest
39		: tests!apps ;
40}
41