javamanager/javainstaller/installerui/build/build.xml
changeset 21 2a9601315dfc
child 48 e0d6e9bd3ca7
equal deleted inserted replaced
18:e8e63152f320 21:2a9601315dfc
       
     1 <!--
       
     2 #
       
     3 # Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4 # All rights reserved.
       
     5 # This component and the accompanying materials are made available
       
     6 # under the terms of "Eclipse Public License v1.0"
       
     7 # which accompanies this distribution, and is available
       
     8 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     9 #
       
    10 # Initial Contributors:
       
    11 # Nokia Corporation - initial contribution.
       
    12 #
       
    13 # Contributors:
       
    14 #
       
    15 # Description: 
       
    16 #
       
    17 -->
       
    18 
       
    19 <project name="javainstallerui" default="deploy" basedir=".">
       
    20     <description>
       
    21         Builds JavaInstaller UI
       
    22     </description>
       
    23 
       
    24   <import file="../../../../build/utilities.xml"/>
       
    25 
       
    26   <property name="localisation.file.base"
       
    27 	    value="javainstallation"/>
       
    28 
       
    29   <!--
       
    30       Data is exported to \epoc32\RELEASE\WINSCW\udeb\Z\resource\java AND
       
    31       to \epoc32\data\Z\resource\java
       
    32       in S60 build env.
       
    33   -->
       
    34   <target name="export.data">
       
    35     <condition property="export.data.path"
       
    36                value="${epocroot}epoc32/release/winscw/udeb/Z/resource/java"
       
    37                else="${env.JAVA_BIN_ROOT}/resources">
       
    38       <isset property="target.s60" />
       
    39     </condition>
       
    40     <copy todir="${export.data.path}">
       
    41         <fileset dir="../data/"/>
       
    42     </copy>
       
    43     <condition property="export.data.path2"
       
    44                value="${epocroot}epoc32/data/Z/resource/java"
       
    45                else="${env.JAVA_BIN_ROOT}/resources">
       
    46       <isset property="target.s60" />
       
    47     </condition>
       
    48     <copy todir="${export.data.path2}">
       
    49         <fileset dir="../data/"/>
       
    50     </copy>
       
    51   </target>
       
    52 
       
    53   <target name="create.internal.api.jar" depends="export.data">
       
    54       <omj.internal.apis includes="com/nokia/mj/impl/installer/ui/*.class"/>
       
    55   </target>
       
    56 
       
    57 </project>