eclipse plugin: Miscellanous build-related updates
This commit is contained in:
parent
260f91bb92
commit
0a1516731d
5 changed files with 9 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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}"/>
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue