-Move shellext folder to a more appropriate location. shell extensions are COM object...
[reactos.git] / reactos / ReactOS-i386.rbuild
1 <?xml version="1.0"?>
2 <!DOCTYPE project SYSTEM "tools/rbuild/project.dtd">
3 <project name="ReactOS" makefile="makefile.auto" xmlns:xi="http://www.w3.org/2001/XInclude">
4 <xi:include href="config.rbuild">
5 <xi:fallback>
6 <xi:include href="config.template.rbuild" />
7 </xi:fallback>
8 </xi:include>
9
10 <xi:include href="ReactOS-generic.rbuild" />
11
12 <define name="_M_IX86" />
13 <define name="_X86_" />
14 <define name="__i386__" />
15
16 <property name="NTOSKRNL_SHARED" value="-Wl,--file-alignment,0x1000 -Wl,--section-alignment,0x1000 -nostartfiles -shared"/>
17
18 <if property="OPTIMIZE" value="1">
19 <compilerflag>-Os</compilerflag>
20 <compilerflag>-ftracer</compilerflag>
21 <compilerflag>-momit-leaf-frame-pointer</compilerflag>
22 </if>
23 <if property="OPTIMIZE" value="2">
24 <compilerflag>-Os</compilerflag>
25 </if>
26 <if property="OPTIMIZE" value="3">
27 <compilerflag>-O1</compilerflag>
28 </if>
29 <if property="OPTIMIZE" value="4">
30 <compilerflag>-O2</compilerflag>
31 </if>
32 <if property="OPTIMIZE" value="5">
33 <compilerflag>-O3</compilerflag>
34 </if>
35
36 <compilerflag>-mpreferred-stack-boundary=2</compilerflag>
37 <compilerflag>-fno-strict-aliasing</compilerflag>
38 <compilerflag>-Wno-strict-aliasing</compilerflag>
39 <compilerflag>-Wpointer-arith</compilerflag>
40 <linkerflag>-enable-stdcall-fixup</linkerflag>
41
42 </project>