sysmodellibs/sysmodelgen/doc/sysmodel/SMG-Input-Files/Dependencies-XMLFile.html
changeset 7 3c36c452f013
equal deleted inserted replaced
6:5b32dc297d05 7:3c36c452f013
       
     1 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
       
     2     <!-- Generated by Xbuild version: 5.0.20 -->
       
     3     <head>
       
     4         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
       
     5 	<meta name="show-comments" content="" />
       
     6 	<title>Legacy Dependencies XML File in System Model Generator Input Files</title>    
       
     7 	<link href="../../_stock/css/reset.css" rel="stylesheet" type="text/css" />
       
     8 	<link href="../../_stock/css/portal.css" rel="stylesheet" type="text/css" />
       
     9 	<link href="../../_stock/css/iefix.css" rel="stylesheet" type="text/css" />
       
    10 	<link href="../../_stock/css/ui.tabs.css" rel="stylesheet" type="text/css" />
       
    11 	<link href="../../_stock/css/developer.css" rel="stylesheet" type="text/css" />
       
    12 	<link rel="stylesheet" type="text/css" href="../../_stock/css/ui.css" media="screen" />
       
    13 	<link rel="stylesheet" type="text/css" href="../../_stock/css/sysdoc.css" media="screen" />
       
    14 	<link rel="stylesheet" type="text/css" href="../../_stock/css/sdlplugin.css" media="screen" />
       
    15     </head>
       
    16     <body>
       
    17 	<div id="main_content">
       
    18 	    <table width="100%" cellpadding="0" cellspacing="0" border="0">
       
    19 		<tr>
       
    20 		    <td valign="top" width="100%">
       
    21 			<div id="main_content_txt">
       
    22 			    <div class="main_content_padding">		
       
    23                                 <div id="main">
       
    24                                     <div id="authoredContent">
       
    25                                         <div class="section">
       
    26 <a name="DependenciesXMLFile"></a><h1>Legacy Dependencies XML File</h1><div class="section">
       
    27 
       
    28 <p><big style="font-weight: bold; font-size: 250%; color: red">Deprecated!</big></p>
       
    29 
       
    30 <h2>Purpose</h2><p>
       
    31 		You can use the dependencies XML file to specify the dependencies
       
    32 		between components of a system model. This legacy syntax will only work with 2.0 and earlier System Definition files. Use the
       
    33 		<a href="Dependencies-sysinfo.html">Sysinfo dependencies</a> syntax for 3.0 and later sysdefs.
       
    34 	  </p></div>
       
    35 <div class="section">
       
    36 <h2>Syntax</h2><pre><code class="cpp">&lt;?xml version="1.0"?&gt;  <br>&lt;SystemModelDeps&gt;<br>    &lt;Executables&gt;<br>        &lt;Executable name="<var>Executable-name</var>" component="<var>component</var>"&gt;<br>                &lt;dep name="<var>dep-name</var>"&gt;&lt;/dep&gt;<br>                      &lt;dep name="<var>dep-name</var>"&gt;&lt;/dep&gt;      <br>          ....<br>        &lt;/Executable&gt;<br>    &lt;/Executables&gt;<br>&lt;/SystemModelDeps&gt;</code></pre></div>
       
    37 <div class="section">
       
    38 <h2>Example</h2><pre><code class="cpp">&lt;?xml version="1.0" encoding="UTF-8"?&gt; <br>&lt;SystemModelDeps&gt;<br><br>    &lt;Executables&gt;<br>        &lt;Executable name="bluetooth.dll" component="Bluetooth Client Library"&gt;<br>            &lt;dep name="btdevice.dll"/&gt; <br>            &lt;dep name="charconv.dll"/&gt; <br>            &lt;dep name="drtaeabi.dll"/&gt; <br>            &lt;dep name="drtrvct2_2.dll"/&gt; <br>            &lt;dep name="eirclient.dll"/&gt; <br>            &lt;dep name="esock.dll"/&gt; <br>            &lt;dep name="euser_v5.dll"/&gt; <br>            &lt;dep name="hciserverclient.dll"/&gt; <br>        &lt;/Executable&gt; <br>        &lt;Executable name="charconv.dll" component="Character Encoding and Conversion Framework"&gt;<br>            &lt;dep name="drtaeabi.dll"/&gt; <br>            &lt;dep name="drtrvct2_2.dll"/&gt; <br>            &lt;dep name="ecom.dll&qu
       
    39 ot;/&gt; <br>            &lt;dep name="efsrv.dll"/&gt; <br>            &lt;dep name="euser_v5.dll"/&gt; <br>        &lt;/Executable&gt; <br>        &lt;Executable name="hciserverclient.dll" component="Bluetooth HCI Framework 2"&gt;<br>            &lt;dep name="drtaeabi.dll"/&gt; <br>            &lt;dep name="esock.dll"/&gt; <br>            &lt;dep name="euser_v5.dll"/&gt; <br>        &lt;/Executable&gt; <br>        &lt;Executable name="sdpdatabase.dll" component="Bluetooth SDP"&gt;<br>            &lt;dep name="bluetooth.dll"/&gt; <br>            &lt;dep name="charconv.dll"/&gt; <br>            &lt;dep name="drtaeabi.dll"/&gt; <br>            &lt;dep name="drtrvct2_2.dll"/&gt; <br>            &lt;dep name="esock.dll"/&gt; <br>            &lt;dep name="euser_v5.dll"/&gt; <br>        &lt;/Executable&gt; <br>        &lt;
       
    40 Executable name="sdpserver.exe" component="Bluetooth SDP"&gt;<br>            &lt;dep name="bluetooth.dll"/&gt; <br>            &lt;dep name="drtaeabi.dll"/&gt; <br>            &lt;dep name="drtrvct2_2.dll"/&gt; <br>            &lt;dep name="eirclient.dll"/&gt; <br>            &lt;dep name="esock.dll"/&gt; <br>            &lt;dep name="euser_v5.dll"/&gt; <br>            &lt;dep name="sdpdatabase.dll"/&gt; <br>        &lt;/Executable&gt; <br>        ... <br>    &lt;/Executables&gt; <br>&lt;/SystemModelDeps&gt; </code></pre></div>
       
    41 <div class="section">
       
    42 <h2> See also</h2><p>
       
    43 		<a href="Localisation-XMLFile.html#Localisation">Localization XML File</a> 
       
    44 	  </p><p>
       
    45 		<a href="System-Info-XMLFile.html#SystemInfoXML">SystemInfo XML File</a> 
       
    46 	  </p><p>
       
    47 		<a href="Values-XML-index.html#valuesxml" title="The Values XML files are used to define default and per-component display properties. You can use a values XML file to define colors, patterns, border shapes, or border styles of the components.">Values XML File</a> 
       
    48 	  </p></div>
       
    49 </div>
       
    50 
       
    51                                     </div>
       
    52                                     <div id="printer_copyright">
       
    53                                         <div id="printer_copyright_padding">
       
    54                                             Copyright &copy;2009  Nokia Corporation and/or its subsidiary(-ies). All rights reserved. License: <a href="http://www.symbianfoundation.org/legal/sfl-v10.html">SFL</a>
       
    55                                         </div>
       
    56                                     </div>
       
    57                                 </div>
       
    58 			    </div>
       
    59 			</div>
       
    60 		    </td>
       
    61 		</tr>
       
    62 	    </table>
       
    63 	    <div style="clear: both"></div>
       
    64 	</div>
       
    65 	<div id="includedFooter">
       
    66 	    <div id="devnet_footer">
       
    67             <div style="float: left;">Copyright &copy;2009  Nokia Corporation and/or its subsidiary(-ies). All rights reserved. License: <a href="http://www.symbianfoundation.org/legal/sfl-v10.html">SFL</a>. </div>
       
    68             <div id='BUILD_VERSION'></div>
       
    69 	    </div>
       
    70 	</div>
       
    71 </body>
       
    72 </html>