Embed only some frameworks when builing a woapplication?

From: Kaj Hejer (kaj.heje..sit.uio.no)
Date: Tue Nov 11 2003 - 07:07:54 EST

  • Next message: Watkins, Garry: "Off the Subject, but a Simple Question about WO"

    Hi!

    When building a woapplication with ant you can embed all the frameworks with

       <frameworks root="${wo.localroot}" embed="true">

    But what if you want to embed only some of your local frameworks when
    bulling your application?

    The solution was to use two frameworks-elements:

                 <!-- the frameworks I don't want to embed -->
                 <frameworks root="${wo.localroot}">
                     <include name="Library/Frameworks/uiofw.framework"/>
                     <include name="Library/Frameworks/utilityfw.framework"/>
                 </frameworks>

                 <!-- the frameworks I want to embed -->
                 <frameworks root="${wo.localroot}" embed="true">
                     <include name="Library/Frameworks/ERExtensions.framework" />
                 </frameworks>

    It is good to be able to someetimes bring solutions too, not only
    questions ;-)

    -Kaj :)



    This archive was generated by hypermail 2.0.0 : Tue Nov 11 2003 - 07:08:23 EST