This wraps the <xslt> task used by all generator.xmlmerge.* targets. --- build.xml | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/build.xml b/build.xml index ed6e1c5..292b967 100644 --- a/build.xml +++ b/build.xml @@ -477,6 +477,19 @@ http://doc.trolltech.com/qtjambi/com/trolltech/qt/qtjambi-installation.html XML Merging for the generator... ************************************************************ --> + + <macrodef name="xmlmerge"> + <attribute name="victim"/> + <sequential> + <xslt force="yes" style="${sourceDir}/generator/merge.xsl" + in="${sourceDir}/generator/typesyst...@{victim}-common.xml" + out="${outputDir}/generator/typesyst...@{victim}.xml"> + <param name="source" + expression="typesyst...@{victim}-java.xml"/> + </xslt> + </sequential> + </macrodef> + <condition property="qtjambi.typesystem_core.uptodate"> <and> <not> -- 1.6.5.rc1 _______________________________________________ Qt-jambi-interest mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest
