put the asterix and colon the right way round
[reactos.git] / reactos / config.template.xml
1 <!--
2 This file is a template used as a starting point for compile-time
3 configuration of ReactOS. Make a copy of this file and name it config.xml.
4 Then change the options in config.xml. If you don't have a config.xml file,
5 then the defaults in this file, config.template.xml, will be used instead.
6
7 Boolean options can obtain the values 0 (disabled) or 1 (enabled). String
8 options can obtain any value specified in the comment before it.
9 -->
10
11
12 <!--
13 Architecture to build for. Specify one of:
14 i386
15 -->
16 <property name="ARCH" value="i386" />
17
18 <!--
19 Sub-architecture to build for. Specify one of:
20 xbox
21 -->
22 <property name="SARCH" value="" />
23
24
25 <!--
26 Which CPU ReactOS should be optimized for. Specify one of:
27 i486, i586, pentium, pentium2, pentium3, pentium4, athlon-xp, athlon-mp,
28 k6-2
29
30 See GCC manual for more CPU names and which CPUs GCC can optimize for.
31 -->
32 <property name="OARCH" value="i486" />
33
34
35 <!--
36 Whether to compile for an uniprocessor or multiprocessor machine.
37 -->
38 <property name="MP" value="0" />
39
40
41 <!--
42 Whether to compile in the integrated kernel debugger.
43 -->
44 <property name="KDBG" value="0" />
45
46
47 <!--
48 Whether to compile for debugging. No compiler optimizations will be
49 performed.
50 -->
51 <property name="DBG" value="1" />