From 8082d6d0d3a857571b85ef22cf9e6c00f8ddcde2 Mon Sep 17 00:00:00 2001 From: DarkWyrm Date: Mon, 8 Jan 2007 23:10:08 +0000 Subject: [PATCH] Fixed R5 build target. Thanks to Axel for the Jamfile help. :^) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19749 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/resedit/Jamfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/apps/resedit/Jamfile b/src/apps/resedit/Jamfile index c399cf7df1..cce487006b 100644 --- a/src/apps/resedit/Jamfile +++ b/src/apps/resedit/Jamfile @@ -4,6 +4,25 @@ SetSubDirSupportedPlatformsBeOSCompatible ; UsePrivateHeaders shared interface ; +if $(TARGET_PLATFORM) = r5 { + +SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src kits interface ] ; + +Application ResEdit : + App.cpp + ColumnListView.cpp + ColumnTypes.cpp + ColorTools.cpp + PreviewColumn.cpp + ResourceData.cpp + ResourceRoster.cpp + ResView.cpp + ResWindow.cpp + : be tracker translation +; + +} else { + Application ResEdit : App.cpp PreviewColumn.cpp @@ -13,3 +32,5 @@ Application ResEdit : ResWindow.cpp : be tracker translation ; + +}