Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 61e18ed741f2cf182b7961ba371acf8515a8726b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

                                                                                  
                                                                                










                                                                                                        
<project name="copy.ecore.to.common" default="all">
	<property name="source.path" value="/org.eclipse.m2m.atl.dsls/resources"/>
	<property name="target.path" value="/org.eclipse.m2m.atl.common/model"/>
	
	<eclipse.convertPath property="source.absolute.path" resourcepath="${source.path}"/>
	<eclipse.convertPath property="target.absolute.path" resourcepath="${target.path}"/>
	
	<target name="all">
		<copy todir="${target.absolute.path}">
			<fileset file="${source.absolute.path}/ATL/Metamodel/ATL.ecore"/>
			<fileset file="${source.absolute.path}/ATL/RuntimeSupport/RefiningTrace.ecore"/>
		</copy>
	</target>
</project>

Back to the top