sbsv2/raptor/test/config/interface.xml
author timothy.murphy@nokia.com
Fri, 18 Dec 2009 18:19:11 +0000
branchwip
changeset 115 5869e06bf2ac
parent 3 e1eecf4d390d
permissions -rw-r--r--
Cause whatcomp output to use the incoming epocroot value. i.e. if epocroot is relative then so is the what output. e.g. if EPOCROOT=\ then the output will be of the form "\epoc32\release\armv5\...." If it's "..\myepocroot" then the output will be "..\myepocroot\epoc32\release\armv5". If it's absolute then the what output will also be absolute.

<?xml version="1.0" encoding="ISO-8859-1"?>

<build xmlns="http://symbian.com/xml/build"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://symbian.com/xml/build build/2_0.xsd">

    <!-- a base interface -->

	<interface name="Base.XYZ" flm="base.flm">
		<param name='A'/>
		<param name='B' default='baseB'/>
		<param name='C' default='baseC'/>
    </interface>
    
    <!-- extends the base interface -->

	<interface name="Extended.XYZ" extends="Base.XYZ" flm="ext.flm">
		<param name='D'/>
		<param name='C' default='extC'/>
    </interface>
    
    <!-- extends the base interface and uses its FLM -->

	<interface name="Extended2.XYZ" extends="Base.XYZ">
		<param name='D'/>
		<param name='C' default='extC'/>
    </interface>
</build>