xref: /haiku/src/apps/resedit/Jamfile (revision 8195a5a835117ab2da405e0d477153570b75d921)
1SubDir HAIKU_TOP src apps resedit ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4
5UsePrivateHeaders shared interface ;
6
7local columnViewSources ;
8
9if ! $(TARGET_PLATFORM_HAIKU_COMPATIBLE) {
10	columnViewSources = ColumnListView.cpp ColumnTypes.cpp ColorTools.cpp ;
11}
12
13SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src kits interface ] ;
14
15Application ResEdit :
16	$(columnViewSources)
17	App.cpp
18	BitmapView.cpp
19	ImageEditor.cpp
20	InlineEditor.cpp
21	MiscEditors.cpp
22	NumberEditors.cpp
23	PreviewColumn.cpp
24	ResFields.cpp
25	ResourceData.cpp
26	ResourceRoster.cpp
27	ResView.cpp
28	ResWindow.cpp
29	: be tracker translation libcolumnlistview.a
30;
31