comparison example/scenegraph/xml/tasks.xml @ 350:628cb162be88 draft

add tasts.xml renderer.xml
author admin@mcbk.cr.ie.u-ryukyu.ac.jp
date Fri, 10 Jul 2009 16:41:20 +0900
parents
children
comparison
equal deleted inserted replaced
349:bd0cc480a60a 350:628cb162be88
1 <!-- Cerium Task Configuration
2 CPU_PPE = 0, // default
3 CPU_SPE = 1,
4 SPE_ANY = CPU_SPE,
5 SPE_0 = 2,
6 SPE_1 = 3,
7 SPE_2 = 4,
8 SPE_3 = 5,
9 SPE_4 = 6,
10 SPE_5 = 7,
11 -->
12
13 <directory>
14 <path> task </path>
15
16 <target>
17 <path> spe </path>
18 <cpu> SPE_ANY </cpu>
19 <cc cc:compiler="spu-g++"/>
20 </target>
21
22 <target>
23 <path> ppe </path>
24 <cpu> CPU_PPE </cpu>
25 <cc cc:compiler="ppu-g++"/>
26 </target>
27
28 <target>
29 <path> macosx </path>
30 <cpu> CPU_PPE </cpu>
31 <cc cc:compiler="mac-g++"/>
32 </target>
33
34 <target name="linux">
35 <path> linux </path>
36 <cpu> CPU_PPE </cpu>
37 <cc cc:compiler="linux-g++"/>
38 </target>
39 <task name="move">
40 <source> move.cpp </source>
41
42 </task>
43
44 <task name="collision">
45 <source> collision.cpp </source>
46 </task>
47
48 </directory>
49
50 <directory>
51 <path> ${CERIUM}/Renderer/test_render </path>
52 <task name="Renderer">
53 <config> renderer.xml </config>
54 </task>
55 </directory>