xref: /haiku/src/apps/resedit/Jamfile (revision e433b3cfc3f089f7681f6d4e81d43f950ca6a440)
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 ;
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	ResListView.cpp
26	ResourceData.cpp
27	ResourceRoster.cpp
28	ResView.cpp
29	ResWindow.cpp
30	: be tracker translation libcolumnlistview.a [ TargetLibsupc++ ]
31;
32