diff rakefile @ 86:12b890a6392a

Work on databinding
author Frank Benoit <benoit@tionex.de>
date Sat, 18 Apr 2009 13:58:35 +0200
parents 635be320a5da
children ebefa5c2eab4
line wrap: on
line diff
--- a/rakefile	Sat Apr 18 13:54:50 2009 +0200
+++ b/rakefile	Sat Apr 18 13:58:35 2009 +0200
@@ -70,7 +70,7 @@
 
 end
 LIBNAMES_SWT        = [ BASEDIR_SWT ]
-LIBNAMES_EQUINOX    = [ "org.eclipse.osgi",
+LIBNAMES_EQUINOX    = [ "org.eclipse.osgi.osgi",
                         "org.eclipse.osgi.supplement",
                         "org.eclipse.equinox.common" ]
 
@@ -306,7 +306,7 @@
 
 desc "Build Equinox"
 task :equinox do
-    buildTree( "org.eclipse.osgi", "src", "res" )
+    buildTree( "org.eclipse.osgi", "osgi/src"      , "res", nil, "org.eclipse.osgi.osgi" )
     buildTree( "org.eclipse.osgi", "supplement/src", "res", nil, "org.eclipse.osgi.supplement")
     buildTree( "org.eclipse.equinox.common", "src", "res" )
 end
@@ -318,8 +318,13 @@
     buildTree( "org.eclipse.core.jobs", "src", "res" )
 end
 
+desc "Build Jface Databinding"
+task :jfacebind do
+    buildTree( "org.eclipse.jface.databinding", "src", "res" )
+end
 desc "Build Databinding"
 task :bind do
+    buildTree( "com.ibm.icu", "src", "res" )
     buildTree( "org.eclipse.core.databinding", "src", "res" )
     buildTree( "org.eclipse.jface.databinding", "src", "res" )
 end