javamanager/javainstaller/installerui/build/build.xml
branchRCL_3
changeset 14 04becd199f91
child 24 6c158198356e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/javamanager/javainstaller/installerui/build/build.xml	Tue Apr 27 16:30:29 2010 +0300
@@ -0,0 +1,57 @@
+<!--
+#
+# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
+# All rights reserved.
+# This component and the accompanying materials are made available
+# under the terms of "Eclipse Public License v1.0"
+# which accompanies this distribution, and is available
+# at the URL "http://www.eclipse.org/legal/epl-v10.html".
+#
+# Initial Contributors:
+# Nokia Corporation - initial contribution.
+#
+# Contributors:
+#
+# Description: 
+#
+-->
+
+<project name="javainstallerui" default="deploy" basedir=".">
+    <description>
+        Builds JavaInstaller UI
+    </description>
+
+  <import file="../../../../build/utilities.xml"/>
+
+  <property name="localisation.file.base"
+	    value="javainstallation"/>
+
+  <!--
+      Data is exported to \epoc32\RELEASE\WINSCW\udeb\Z\resource\java AND
+      to \epoc32\data\Z\resource\java
+      in S60 build env.
+  -->
+  <target name="export.data">
+    <condition property="export.data.path"
+               value="${epocroot}epoc32/release/winscw/udeb/Z/resource/java"
+               else="${env.JAVA_BIN_ROOT}/resources">
+      <isset property="target.s60" />
+    </condition>
+    <copy todir="${export.data.path}">
+        <fileset dir="../data/"/>
+    </copy>
+    <condition property="export.data.path2"
+               value="${epocroot}epoc32/data/Z/resource/java"
+               else="${env.JAVA_BIN_ROOT}/resources">
+      <isset property="target.s60" />
+    </condition>
+    <copy todir="${export.data.path2}">
+        <fileset dir="../data/"/>
+    </copy>
+  </target>
+
+  <target name="create.internal.api.jar" depends="export.data">
+      <omj.internal.apis includes="com/nokia/mj/impl/installer/ui/*.class"/>
+  </target>
+
+</project>