Changeset 1033
- Timestamp:
- 10/15/06 01:59:27
- Files:
-
- trunk/build.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build.xml
r1025 r1033 413 413 <copy-to-dependent this="${org.bedework.project.calendarapi}" 414 414 target="${org.bedework.project.dumprestore}" /> 415 <copy-special-to-dependent this="${org.bedework.project.calendarapi}" 416 target="${org.bedework.project.dumprestore}" 417 prefix="bw-calcore" /> 415 418 <copy-to-dependent this="${org.bedework.project.calendarapi}" 416 419 target="${org.bedework.project.freebusy}" /> … … 693 696 <echo message="*************** link them in some way." /> 694 697 </target> 698 699 <!-- ============================================================================= 700 Update dependent project (target) from a project just built (this) 701 with a special library (i.e. not one in libapi 702 ============================================================================= --> 703 <macrodef name="copy-special-to-dependent"> 704 <attribute name="target"/> 705 <attribute name="this"/> 706 <attribute name="fromdir" default="dist"/> 707 <attribute name="prefix" /> 708 <sequential> 709 <copy todir="@{target}/lib" overwrite="yes"> 710 <fileset dir="@{this}/@{fromdir}"> 711 <include name="@{prefix}*.jar" /> 712 </fileset> 713 </copy> 714 </sequential> 715 </macrodef> 695 716 696 717 <!-- =============================================================================
