xref: /haiku/src/preferences/appearance/Jamfile (revision e81a954787e50e56a7f06f72705b7859b6ab06d1)
1SubDir HAIKU_TOP src preferences appearance ;
2
3AddSubDirSupportedPlatforms libbe_test ;
4
5UsePrivateHeaders app interface [ FDirName servers app ] ;
6UseBuildFeatureHeaders freetype ;
7
8Includes [ FGristFiles AntialiasingSettingsView.cpp ]
9	: [ BuildFeatureAttribute freetype : headers ] ;
10
11Preference Appearance :
12	APRMain.cpp
13	AntialiasingSettingsView.cpp
14	LookAndFeelSettingsView.cpp
15	FakeScrollBar.cpp
16	FontSelectionView.cpp
17	FontView.cpp
18	APRView.cpp
19	APRWindow.cpp
20	ColorPreview.cpp
21	Colors.cpp
22	ColorWhichItem.cpp
23	ColorWhichListView.cpp
24
25	# These are currently disabled while everything else is being worked on
26	#CurView.cpp
27	#CursorWhichItem.cpp
28	#SysCursorAPI.cpp
29
30	# These exist for post-R1, so they are disabled for now
31	#FontMenu.cpp
32	#MenuView.cpp
33
34	: be [ TargetLibstdc++ ] [ TargetLibsupc++ ] localestub
35	: Appearance.rdef
36	;
37
38DoCatalogs Appearance :
39	x-vnd.Haiku-Appearance
40	:
41	AntialiasingSettingsView.cpp
42	APRView.cpp
43	APRWindow.cpp
44	ColorPreview.cpp
45	Colors.cpp
46	ColorWhichItem.cpp
47	LookAndFeelSettingsView.cpp
48	FontView.cpp
49	FontSelectionView.cpp
50;
51
52if $(TARGET_PLATFORM) = libbe_test {
53	HaikuInstall install-test-apps : $(HAIKU_APP_TEST_DIR) : Appearance
54		: tests!apps ;
55}
56