Re: Multiple install targets in WOLips?

From: Lachlan Deck (lachlan.dec..mail.com)
Date: Tue Jun 26 2007 - 19:52:53 EDT

  • Next message: Mike Schrag: "Re: WOLips 3.3"

    On 27/06/2007, at 5:04 AM, Ken Anderson wrote:

    > Is there any way using the Ant view to have it hit multiple
    > projects? What I was looking for is something akin to Install...
    > where I can pick all the projects and walk away.

    Unfortunately not, but you just need an ant file in one of your
    projects that will do that... (e.g., below)

    Load the ant file into the view, call one of the targets (e.g.,
    'build') and walk away if you like... or watch the console.

    with regards,

    --
    

    Lachlan Deck

    <?xml version="1.0"?> <project name="macrobuild" basedir="." default="build"> <!-- = = = = = = = = = = = = = = = = = macrodef: anttarget = = = = = = = = = = = = = = = = = --> <macrodef name="anttarget"> <attribute name="name" default="build" /> <sequential> <subant target=..name}" antfile="build.xml"> <filelist dir="${basedir}"> <file name="FrameworkA" /> <...> <file name="ProjectA" /> <file name="ProjectB" /> </filelist> </subant> </sequential> </macrodef>

    <target name="clean"> <anttarget name="clean"/> </target> <target name="compile"> <anttarget name="compile"/> </target> <target name="build"> <anttarget name="build"/> </target> <target name="install"> <anttarget name="install"/> </target>

    <target name="reinstall"> <anttarget name="reinstall"/> </target> </project>



    This archive was generated by hypermail 2.0.0 : Tue Jun 26 2007 - 21:02:41 EDT