~ubuntu-branches/ubuntu/lucid/codelite/lucid

« back to all changes in this revision

Viewing changes to Runtime/config/build_settings.xml.default.win

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-02-10 02:27:55 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090210022755-m5692nfc1t5uf1w9
Tags: 1.0.2759+dfsg-0ubuntu1
* New upstream release (LP: #327216).
* debian/patches/series, debian/patches/00_fix-ia64-build.patch:
  + Dropped, applied upstream already.
* debian/patches/02_fix-desktop.patch,
  debian/patches/03_fix-sh.patch:
  + Refreshed to patch cleanly.
* debian/rules:
  + Make get-orig-source honour UPSTREAM_VERSION if set.
* debian/ctags-le.1,
  debian/codelite_indexer.1,
  debian/codelite.manpages:
  + Dropped ctags-le manpage, since ctags-le was replaced by
    codelite_indexer.
  + Added codelite_indexer manpage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="UTF-8"?>
2
 
<BuildSettings>
3
 
  <Compilers>
4
 
    <Compiler Name="gnu g++">
5
 
      <Switch Name="ArchiveOutput" Value=" "/>
6
 
      <Switch Name="Debug" Value="-gstab"/>
7
 
      <Switch Name="Include" Value="-I"/>
8
 
      <Switch Name="Library" Value="-l"/>
9
 
      <Switch Name="LibraryPath" Value="-L"/>
10
 
      <Switch Name="Object" Value="-o "/>
11
 
      <Switch Name="Output" Value="-o "/>
12
 
      <Switch Name="Preprocessor" Value="-D"/>
13
 
      <Switch Name="Source" Value="-c "/>
14
 
      <Tool Name="ArchiveTool" Value="ar rcus"/>
15
 
      <Tool Name="CompilerName" Value="g++"/>
16
 
      <Tool Name="LinkerName" Value="g++"/>
17
 
      <Tool Name="ResourceCompiler" Value="windres"/>
18
 
      <Tool Name="SharedObjectLinkerName" Value="g++ -shared -fPIC"/>
19
 
      <Option Name="ObjectSuffix" Value=".o"/>
20
 
      <Pattern Name="Error" FileNameIndex="1" LineNumberIndex="3">(^[a-zA-Z:]{2}[ a-zA-Z\.0-9_/\+\-]+ *)(:)([0-9]+ *)(:)([ eor]*)</Pattern>
21
 
      <Pattern Name="Warning" FileNameIndex="1" LineNumberIndex="3">(^[a-zA-Z:]{2}[ a-zA-Z\.0-9_/\+\-]+ *)(:)([0-9]+ *)(:)([0-9:]*)?( warning:)</Pattern>
22
 
      <GlobalIncludePath></GlobalIncludePath>
23
 
      <GlobalLibPath></GlobalLibPath>
24
 
      <PathVariable></PathVariable>
25
 
    </Compiler>
26
 
    <Compiler Name="gnu gcc">
27
 
      <Switch Name="ArchiveOutput" Value=" "/>
28
 
      <Switch Name="Debug" Value="-g "/>
29
 
      <Switch Name="Include" Value="-I"/>
30
 
      <Switch Name="Library" Value="-l"/>
31
 
      <Switch Name="LibraryPath" Value="-L"/>
32
 
      <Switch Name="Object" Value="-o "/>
33
 
      <Switch Name="Output" Value="-o "/>
34
 
      <Switch Name="Preprocessor" Value="-D"/>
35
 
      <Switch Name="Source" Value="-c "/>
36
 
      <Tool Name="ArchiveTool" Value="ar rcus"/>
37
 
      <Tool Name="CompilerName" Value="gcc"/>
38
 
      <Tool Name="LinkerName" Value="gcc"/>
39
 
      <Tool Name="ResourceCompiler" Value="windres"/>
40
 
      <Tool Name="SharedObjectLinkerName" Value="gcc -shared -fPIC"/>
41
 
      <Option Name="ObjectSuffix" Value=".o"/>
42
 
          <Pattern Name="Error" FileNameIndex="1" LineNumberIndex="3">(^[a-zA-Z:]{2}[ a-zA-Z\.0-9_/\+\-]+ *)(:)([0-9]+ *)(:)([ eor]*)</Pattern>
43
 
      <Pattern Name="Warning" FileNameIndex="1" LineNumberIndex="3">(^[a-zA-Z:]{2}[ a-zA-Z\.0-9_/\+\-]+ *)(:)([0-9]+ *)(:)([0-9:]*)?( warning:)</Pattern>
44
 
      <GlobalIncludePath></GlobalIncludePath>
45
 
      <GlobalLibPath></GlobalLibPath>
46
 
      <PathVariable></PathVariable>
47
 
    </Compiler>
48
 
    <Compiler Name="VC++">
49
 
      <Switch Name="ArchiveOutput" Value="/OUT:"/>
50
 
      <Switch Name="Debug" Value="/Zi "/>
51
 
      <Switch Name="Include" Value="/I"/>
52
 
      <Switch Name="Library" Value=" "/>
53
 
      <Switch Name="LibraryPath" Value="/LIBPATH:"/>
54
 
      <Switch Name="Object" Value="/Fo"/>
55
 
      <Switch Name="Output" Value="/OUT:"/>
56
 
      <Switch Name="Preprocessor" Value="/D"/>
57
 
      <Switch Name="Source" Value=""/>
58
 
      <Tool Name="ArchiveTool" Value="lib.exe  /nologo"/>
59
 
      <Tool Name="CompilerName" Value="cl.exe /nologo /c"/>
60
 
      <Tool Name="LinkerName" Value="link.exe  /nologo"/>
61
 
      <Tool Name="ResourceCompiler" Value="windres"/>
62
 
      <Tool Name="SharedObjectLinkerName" Value="link.exe /DLL  /nologo"/>
63
 
      <Option Name="ObjectSuffix" Value=".obj"/>
64
 
      <Pattern Name="Error" FileNameIndex="1" LineNumberIndex="3">(^[a-zA-Z\\\.0-9 _/\:\+\-]+ *)(\()([0-9]+)(\))( \: )</Pattern>
65
 
      <Pattern Name="Warning" FileNameIndex="1" LineNumberIndex="3">(^[a-zA-Z\\\.0-9 _/\:\+\-]+ *)(\()([0-9]+)(\))( \: )(warning)</Pattern>
66
 
      <GlobalIncludePath>"C:/Program Files/Microsoft Visual Studio 8/VC/include";.</GlobalIncludePath>
67
 
      <GlobalLibPath>"C:/Program Files/Microsoft Visual Studio 8/VC/lib"</GlobalLibPath>
68
 
      <PathVariable></PathVariable>
69
 
    </Compiler>
70
 
  </Compilers>
71
 
  <BuildSystem Name="GNU makefile for g++/gcc" ToolPath="mingw32-make.exe" Options="-f" Jobs="2"/>
72
 
</BuildSettings>
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<BuildSettings>
 
3
  <Compilers>
 
4
    <Compiler Name="gnu g++">
 
5
      <Switch Name="ArchiveOutput" Value=" "/>
 
6
      <Switch Name="Debug" Value="-gstab"/>
 
7
      <Switch Name="Include" Value="-I"/>
 
8
      <Switch Name="Library" Value="-l"/>
 
9
      <Switch Name="LibraryPath" Value="-L"/>
 
10
      <Switch Name="Object" Value="-o "/>
 
11
      <Switch Name="Output" Value="-o "/>
 
12
      <Switch Name="Preprocessor" Value="-D"/>
 
13
      <Switch Name="Source" Value="-c "/>
 
14
      <Tool Name="ArchiveTool" Value="ar rcus"/>
 
15
      <Tool Name="CompilerName" Value="g++"/>
 
16
      <Tool Name="LinkerName" Value="g++"/>
 
17
      <Tool Name="ResourceCompiler" Value="windres"/>
 
18
      <Tool Name="SharedObjectLinkerName" Value="g++ -shared -fPIC"/>
 
19
      <Option Name="ObjectSuffix" Value=".o"/>
 
20
      <Pattern Name="Error" FileNameIndex="1" LineNumberIndex="3">(^[a-zA-Z:]{0,2}[ a-zA-Z\.0-9_/\+\-]+ *)(:)([0-9]+ *)(:)([ eor]*)</Pattern>
 
21
      <Pattern Name="Warning" FileNameIndex="1" LineNumberIndex="3">(^[a-zA-Z:]{0,2}[ a-zA-Z\.0-9_/\+\-]+ *)(:)([0-9]+ *)(:)([0-9:]*)?( warning:)</Pattern>
 
22
      <GlobalIncludePath></GlobalIncludePath>
 
23
      <GlobalLibPath></GlobalLibPath>
 
24
      <PathVariable></PathVariable>
 
25
      <CompilerOption Name="-g">Produce debugging information.</CompilerOption>
 
26
      <CompilerOption Name="-pg">Profile code when executed.</CompilerOption>
 
27
      <CompilerOption Name="-ansi">In C mode, support all ISO C90 programs. In C++ mode, remove GNU extensions that conflict with ISO C++.</CompilerOption>
 
28
      <CompilerOption Name="-Wall">Enable all compiler warnings.</CompilerOption>
 
29
      <CompilerOption Name="-W">Enable standard compiler warnings</CompilerOption>
 
30
      <CompilerOption Name="-Wfatal-errors">Stop compiling after first error</CompilerOption>
 
31
      <CompilerOption Name="-w">Inhibit all warning messages</CompilerOption>
 
32
      <CompilerOption Name="-pedantic">Enable warnings demanded by strict ISO C and ISO C++</CompilerOption>
 
33
      <CompilerOption Name="-pedantic-errors">Treat as errors the warnings demanded by strict ISO C and ISO C++</CompilerOption>
 
34
      <CompilerOption Name="-Wmain">Warn if main() is not conformant</CompilerOption>
 
35
      <CompilerOption Name="-O">Optimize generated code (for speed)</CompilerOption>
 
36
      <CompilerOption Name="-O1">Optimize more (for speed)</CompilerOption>
 
37
      <CompilerOption Name="-O2">Optimize even more (for speed)</CompilerOption>
 
38
      <CompilerOption Name="-O3">Optimize fully (for speed)</CompilerOption>
 
39
      <CompilerOption Name="-Os">Optimize generated code (for size)</CompilerOption>
 
40
      <CompilerOption Name="-fexpensive-optimizations">Expensive optimizations</CompilerOption>
 
41
      <LinkerOption Name="-s">Remove all symbol table and relocation information from the executable.</LinkerOption>
 
42
    </Compiler>
 
43
    <Compiler Name="gnu gcc">
 
44
      <Switch Name="ArchiveOutput" Value=" "/>
 
45
      <Switch Name="Debug" Value="-g "/>
 
46
      <Switch Name="Include" Value="-I"/>
 
47
      <Switch Name="Library" Value="-l"/>
 
48
      <Switch Name="LibraryPath" Value="-L"/>
 
49
      <Switch Name="Object" Value="-o "/>
 
50
      <Switch Name="Output" Value="-o "/>
 
51
      <Switch Name="Preprocessor" Value="-D"/>
 
52
      <Switch Name="Source" Value="-c "/>
 
53
      <Tool Name="ArchiveTool" Value="ar rcus"/>
 
54
      <Tool Name="CompilerName" Value="gcc"/>
 
55
      <Tool Name="LinkerName" Value="gcc"/>
 
56
      <Tool Name="ResourceCompiler" Value="windres"/>
 
57
      <Tool Name="SharedObjectLinkerName" Value="gcc -shared -fPIC"/>
 
58
      <Option Name="ObjectSuffix" Value=".o"/>
 
59
          <Pattern Name="Error" FileNameIndex="1" LineNumberIndex="3">(^[a-zA-Z:]{0,2}[ a-zA-Z\.0-9_/\+\-]+ *)(:)([0-9]+ *)(:)([ eor]*)</Pattern>
 
60
      <Pattern Name="Warning" FileNameIndex="1" LineNumberIndex="3">(^[a-zA-Z:]{0,2}[ a-zA-Z\.0-9_/\+\-]+ *)(:)([0-9]+ *)(:)([0-9:]*)?( warning:)</Pattern>
 
61
      <GlobalIncludePath></GlobalIncludePath>
 
62
      <GlobalLibPath></GlobalLibPath>
 
63
      <PathVariable></PathVariable>
 
64
      <CompilerOption Name="-g">Produce debugging information.</CompilerOption>
 
65
      <CompilerOption Name="-pg">Profile code when executed.</CompilerOption>
 
66
      <CompilerOption Name="-ansi">In C mode, support all ISO C90 programs. In C++ mode, remove GNU extensions that conflict with ISO C++.</CompilerOption>
 
67
      <CompilerOption Name="-Wall">Enable all compiler warnings.</CompilerOption>
 
68
      <CompilerOption Name="-W">Enable standard compiler warnings</CompilerOption>
 
69
      <CompilerOption Name="-Wfatal-errors">Stop compiling after first error</CompilerOption>
 
70
      <CompilerOption Name="-w">Inhibit all warning messages</CompilerOption>
 
71
      <CompilerOption Name="-pedantic">Enable warnings demanded by strict ISO C and ISO C++</CompilerOption>
 
72
      <CompilerOption Name="-pedantic-errors">Treat as errors the warnings demanded by strict ISO C and ISO C++</CompilerOption>
 
73
      <CompilerOption Name="-Wmain">Warn if main() is not conformant</CompilerOption>
 
74
      <CompilerOption Name="-O">Optimize generated code (for speed)</CompilerOption>
 
75
      <CompilerOption Name="-O1">Optimize more (for speed)</CompilerOption>
 
76
      <CompilerOption Name="-O2">Optimize even more (for speed)</CompilerOption>
 
77
      <CompilerOption Name="-O3">Optimize fully (for speed)</CompilerOption>
 
78
      <CompilerOption Name="-Os">Optimize generated code (for size)</CompilerOption>
 
79
      <CompilerOption Name="-fexpensive-optimizations">Expensive optimizations</CompilerOption>
 
80
      <LinkerOption Name="-s">Remove all symbol table and relocation information from the executable.</LinkerOption>
 
81
    </Compiler>
 
82
    <Compiler Name="VC++">
 
83
      <Switch Name="ArchiveOutput" Value="/OUT:"/>
 
84
      <Switch Name="Debug" Value="/Zi "/>
 
85
      <Switch Name="Include" Value="/I"/>
 
86
      <Switch Name="Library" Value=" "/>
 
87
      <Switch Name="LibraryPath" Value="/LIBPATH:"/>
 
88
      <Switch Name="Object" Value="/Fo"/>
 
89
      <Switch Name="Output" Value="/OUT:"/>
 
90
      <Switch Name="Preprocessor" Value="/D"/>
 
91
      <Switch Name="Source" Value=""/>
 
92
      <Tool Name="ArchiveTool" Value="lib.exe  /nologo"/>
 
93
      <Tool Name="CompilerName" Value="cl.exe /nologo /c"/>
 
94
      <Tool Name="LinkerName" Value="link.exe  /nologo"/>
 
95
      <Tool Name="ResourceCompiler" Value="windres"/>
 
96
      <Tool Name="SharedObjectLinkerName" Value="link.exe /DLL  /nologo"/>
 
97
      <Option Name="ObjectSuffix" Value=".obj"/>
 
98
      <Pattern Name="Error" FileNameIndex="1" LineNumberIndex="3">(^[a-zA-Z\\\.0-9 _/\:\+\-]+ *)(\()([0-9]+)(\))( \: )</Pattern>
 
99
      <Pattern Name="Warning" FileNameIndex="1" LineNumberIndex="3">(^[a-zA-Z\\\.0-9 _/\:\+\-]+ *)(\()([0-9]+)(\))( \: )(warning)</Pattern>
 
100
      <GlobalIncludePath>"C:/Program Files/Microsoft Visual Studio 8/VC/include";.</GlobalIncludePath>
 
101
      <GlobalLibPath>"C:/Program Files/Microsoft Visual Studio 8/VC/lib"</GlobalLibPath>
 
102
      <PathVariable></PathVariable>
 
103
    </Compiler>
 
104
  </Compilers>
 
105
  <BuildSystem Name="GNU makefile for g++/gcc" ToolPath="mingw32-make.exe" Options="-f" Jobs="2"/>
 
106
</BuildSettings>