3
|
1 |
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
2 |
<build xmlns="http://symbian.com/xml/build" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symbian.com/xml/build ../../schema/build/2_0.xsd">
|
|
3 |
|
|
4 |
<!--
|
|
5 |
|
|
6 |
The root variant is extended by all buildable variants.
|
|
7 |
|
|
8 |
It contains references to variants which have defaults here but which
|
|
9 |
can be overridden to effectively apply a global change for all builds.
|
|
10 |
|
|
11 |
-->
|
|
12 |
|
|
13 |
<var name="root">
|
|
14 |
<varRef ref="root.places"/>
|
|
15 |
<varRef ref="root.properties"/>
|
|
16 |
|
|
17 |
<!-- redefine this to make changes to the root variant -->
|
|
18 |
<varRef ref="root.changes"/>
|
|
19 |
</var>
|
|
20 |
|
|
21 |
<!-- Common folders and files -->
|
|
22 |
<var name="root.places">
|
|
23 |
<env name='EPOCROOT' default='/' type='path'/>
|
|
24 |
|
|
25 |
<set name='EPOCINCLUDE' value='$(EPOCROOT)/epoc32/include'/>
|
|
26 |
<set name='EPOCTOOLS' value='$(EPOCROOT)/epoc32/tools'/>
|
|
27 |
|
|
28 |
<!-- Place where intermediate files are built -->
|
|
29 |
<env name='SBS_BUILD_DIR' default='$(EPOCROOT)/epoc32/build' type='path'/>
|
|
30 |
|
|
31 |
<!-- Configuration files and directories -->
|
|
32 |
<set name='PRODUCT_INCLUDE' value='$(EPOCINCLUDE)/variant/symbian_os.hrh'/>
|
|
33 |
<set name='VARIANT_CFG' value='$(EPOCTOOLS)/variant/variant.cfg'/>
|
|
34 |
<set name='MAKEFILE_TEMPLATES' value='$(EPOCTOOLS)/makefile_templates'/>
|
|
35 |
<set name='FLM_EXPORT_DIR' value='$(MAKEFILE_TEMPLATES)'/>
|
|
36 |
</var>
|
|
37 |
|
|
38 |
<!-- Things which are properties of different OS versions rather than
|
|
39 |
properties of Raptor itself. The values here are for TB92sf and
|
|
40 |
may be completely redefined for other OS versions or modified
|
|
41 |
slightly by redefining the root.changes variant. -->
|
|
42 |
<var name="root.properties">
|
|
43 |
<set name='POSTLINKER_SUPPORTS_WDP' value='1'/>
|
|
44 |
<set name='SUPPORTS_STDCPP_NEWLIB' value='1'/>
|
|
45 |
<set name="RVCT_PRE_INCLUDE" value="$(EPOCINCLUDE)/rvct/rvct.h"/>
|
|
46 |
</var>
|
|
47 |
|
|
48 |
<!-- Placeholder for the root.changes variant. This will typically be
|
|
49 |
redefined inside a .xml file in the $(EPOCROOT)/epoc32/sbs_config
|
|
50 |
folder or a folder added with the configpath option. -->
|
|
51 |
<var name="root.changes"/>
|
|
52 |
|
|
53 |
</build>
|