eclipse plugin: Miscellanous build-related updates

This commit is contained in:
Timotei Dolean 2011-05-22 20:13:40 +00:00
parent 260f91bb92
commit 0a1516731d
5 changed files with 9 additions and 4 deletions

View file

@ -29,6 +29,7 @@ goto end
java -cp %EQUINOXJAR% org.eclipse.core.launcher.Main -data workspace -application org.eclipse.ant.core.antRunner -DbuildDirectory=%BUILDDIR% -Dbase=%ECLIPSEBIN% -DbaseLocation=%ECLIPSEBIN% -Ddeltapack=%ECLIPSEBIN% -Declipse.pdebuild.scripts=%PDEBUILD_DIR%\scripts -Declipse.pdebuild.templates=%PDEBUILD_DIR%\templates -buildfile build.xml
IF EXIST ../org.wesnoth.feature/build.xml rm ../org.wesnoth.feature/build.xml
IF EXIST ../org.wesnoth/build.xml rm ../org.wesnoth/build.xml
IF EXIST ../org.wesnoth.wml/build.xml rm ../org.wesnoth.wml/build.xml
IF EXIST ../org.wesnoth.wml.ui/build.xml rm ../org.wesnoth.wml.ui/build.xml

View file

@ -54,7 +54,7 @@ parallelThreadCount=2
parallelThreadsPerProcessor=1
#Set to true if you want the output to be ready for an update jar (no site.xml generated)
outputUpdateJars = false
outputUpdateJars = true
#Set to true if you want to sign jars
#signJars=false

View file

@ -48,6 +48,10 @@ if [[ -f "../org.wesnoth/build.xml" ]]
then
rm ../org.wesnoth/build.xml
fi
if [[ -f "../org.wesnoth.feature/build.xml" ]]
then
rm ../org.wesnoth.feature/build.xml
fi
if [[ -f "../org.wesnoth.wml/build.xml" ]]
then
rm ../org.wesnoth.wml/build.xml

View file

@ -5,7 +5,7 @@
<fail unless="haveBaseLocation" message="Please set the base location for the eclipse installation." />
<available property="haveBuildDirectory" file="${buildDirectory}"/>
<fail unless="haveBuildDirectory" message="Please set the base location for the eclipse installation." />
<fail unless="haveBuildDirectory" message="Please set the build location." />
<!-- Check that we have a deltapack -->
<available property="haveDeltaPack" file="${deltapack}"/>

View file

@ -86,8 +86,8 @@ public class ApplicationActionBarAdvisor extends ActionBarAdvisor
@Override
protected void fillCoolBar(ICoolBarManager coolBar)
{
IActionBarConfigurer config = getActionBarConfigurer();
System.out.println(config.toString());
//IActionBarConfigurer config = getActionBarConfigurer();
//System.out.println(config.toString());
for(IWorkbenchAction action : coolBarActions_){
coolBar.add(action);
}