lwjgl2-arm64/eclipse-update/org.lwjgl.build/test/buildtest/build.xml
Jens von Pilgrim 0b5b6cbcb4 Initial import of eclipse plugins. Note: The plugins are only skeletons, the actual plugins are to be build with the Ant script found in org.lwjgl.build/build.xml. See org.lwjgl.build/READ.ME for details.
Plugin lwjgl.org contains a binary version of LWJGL for development purposes (of this plugin) only. This binary version is ignored by the build script.
2011-03-30 09:35:14 +00:00

37 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- ======================================================================
Nov 15, 2010 9:45:57 PM
project
description
jpilgrim
====================================================================== -->
<project name="project" default="default">
<description>
description
</description>
<taskdef name="normalizeVersion" classname="de.jevopi.ant.NormalizeVersion" >
<classpath>
<pathelement location="../../build/classes"/>
</classpath>
</taskdef>
<!-- =================================
target: default
================================= -->
<target name="default" depends="depends" description="description">
<normalizeVersion property="norm" version="1.2" />
<echo>${norm}</echo>
</target>
<!-- - - - - - - - - - - - - - - - - -
target: depends
- - - - - - - - - - - - - - - - - -->
<target name="depends">
</target>
</project>