blob: 5c307e6b78910086ae15de04d2ea03ffa2b2f617 [file] [log] [blame]
<!--
Copyright (c) 2009 Mia-Software.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Gregoire DUPE (Mia-Software)
Nicolas Bros (Mia-Software)
-->
<project name="emtlCopy" default="emtlCopy">
<property name="htmlReport.emtl.dir" value="org/eclipse/modisco/java/discoverer/benchmark/template/html"></property>
<property name="htmlReport.emtl" value="${htmlReport.emtl.dir}/htmlReport.emtl"></property>
<property name="htmlReport2.emtl" value="${htmlReport.emtl.dir}/htmlReport2.emtl"></property>
<target name="emtlCopy">
<copy file="${basedir}/bin/${htmlReport.emtl}" tofile="${basedir}/emtl/${htmlReport.emtl}"/>
<copy file="${basedir}/bin/${htmlReport2.emtl}" tofile="${basedir}/emtl/${htmlReport2.emtl}"/>
</target>
<target name="emtlCopyBack">
<copy file="emtl/${htmlReport.emtl}" tofile="bin/${htmlReport.emtl}"/>
<copy file="emtl/${htmlReport2.emtl}" tofile="bin/${htmlReport2.emtl}"/>
</target>
</project>