]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/FrameworkWizard/build.xml
comment out item type checking temporarily when adding module to fpd file.
[mirror_edk2.git] / Tools / Source / FrameworkWizard / build.xml
1 <?xml version="1.0"?>
2 <!--
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 -->
12 <project name="FrameworkWizard" default="FrameworkWizard" basedir=".">
13 <taskdef resource="net/sf/antcontrib/antlib.xml"/>
14 <property environment="env"/>
15 <property name="WORKSPACE" value="${env.WORKSPACE}"/>
16 <path id="classpath">
17 <fileset dir="${WORKSPACE}/Tools/Jars" includes="*.jar"/>
18 <fileset dir="${env.XMLBEANS_HOME}/lib" includes="*.jar"/>
19 </path>
20 <property name="buildDir" value="build"/>
21 <property name="resourceDir" value="rsc"/>
22 <property name="installLocation" value="${WORKSPACE}/Tools/bin"/>
23 <target name="FrameworkWizard" depends="install"/>
24 <target name="source">
25 <mkdir dir="${buildDir}"/>
26 <javac srcdir="src" destdir="${buildDir}">
27 <classpath refid="classpath"/>
28 <!-- <compilerarg value="-Xlint"/> -->
29 </javac>
30 </target>
31 <target name="clean">
32 <delete dir="${buildDir}"/>
33 </target>
34 <target name="cleanall">
35 <delete dir="${buildDir}"/>
36 <delete file="${installLocation}/FrameworkWizard.jar"/>
37 </target>
38 <target name="install" depends="source">
39 <jar destfile="${installLocation}/FrameworkWizard.jar" manifest="MANIFEST.MF">
40 <fileset dir="${buildDir}"/>
41 <fileset dir="${resourceDir}"/>
42 </jar>
43 </target>
44 </project>