Add config.rbuild and change version to 0.3.1
[reactos.git] / reactos / config.rbuild
1 <?xml version="1.0"?>
2 <rbuild xmlns:xi="http://www.w3.org/2001/XInclude">
3
4 <!--
5 This file is a template used as a starting point for compile-time
6 configuration of ReactOS. Make a copy of this file and name it config.rbuild.
7 Then change the options in config.rbuild. If you don't have a config.rbuild file,
8 then the defaults in this file, config.template.rbuild, will be used instead.
9
10 Boolean options can obtain the values 0 (disabled) or 1 (enabled). String
11 options can obtain any value specified in the comment before it.
12 -->
13
14
15 <!--
16 Architecture to build for. Specify one of:
17 i386
18 -->
19 <property name="ARCH" value="i386" />
20
21 <!--
22 Sub-architecture to build for. Specify one of:
23 xbox
24 -->
25 <property name="SARCH" value="" />
26
27
28 <!--
29 Which CPU ReactOS should be optimized for. Specify one of:
30 i486, i586, pentium, pentium2, pentium3, pentium4, athlon-xp, athlon-mp,
31 k6-2
32
33 See GCC manual for more CPU names and which CPUs GCC can optimize for.
34 -->
35 <property name="OARCH" value="pentium2" />
36
37
38 <!--
39 Whether to compile for an uniprocessor or multiprocessor machine.
40 -->
41 <property name="MP" value="0" />
42
43
44 <!--
45 Whether to compile in the integrated kernel debugger.
46 -->
47 <property name="KDBG" value="1" />
48
49
50 <!--
51 Whether to compile for debugging. No compiler optimizations will be
52 performed.
53 -->
54 <property name="DBG" value="1" />
55
56
57 <!--
58 Whether to compile for debugging with GDB. If you don't use GDB, don't
59 enable this.
60 -->
61 <property name="GDB" value="0" />
62
63
64 <!--
65 Whether to compile apps/libs with features covered software patents or not.
66 If you live in a country where software patents are valid/apply, don't
67 enable this (except they/you purchased a license from the patent owner).
68 This settings is disabled (0) by default.
69 -->
70 <property name="NSWPAT" value="0" />
71
72 <!--
73 Whether to compile with NT-compatible LPC Semantics. At the moment, this will
74 cause all LPC-related functionality to fail and should only be used if you're
75 working on the \ntlpc directory. Leave this disabled unless you really know
76 what you're doing.
77 -->
78 <property name="NTLPC" value="0" />
79
80 </rbuild>