diff options
author | Jeff Ames | 2008-03-17 20:55:21 +0000 |
---|---|---|
committer | Jeff Ames | 2008-03-17 20:55:21 +0000 |
commit | 79209c429705beb57ad9b787718856ab2c9fd37c (patch) | |
tree | 6f459e172985bce8ffbfc09a5b9a4594dd881a62 /Prebuild/prebuild.xml | |
parent | * More almost completely unproductive log message fiddling (diff) | |
download | opensim-SC_OLD-79209c429705beb57ad9b787718856ab2c9fd37c.zip opensim-SC_OLD-79209c429705beb57ad9b787718856ab2c9fd37c.tar.gz opensim-SC_OLD-79209c429705beb57ad9b787718856ab2c9fd37c.tar.bz2 opensim-SC_OLD-79209c429705beb57ad9b787718856ab2c9fd37c.tar.xz |
Merged changes in Prebuild trunk up to r258 into OpenSim's Prebuild.
Hopefully this should make merging upstream easier.
Building with NAnt should still work, but Visual Studio is untested.
Diffstat (limited to 'Prebuild/prebuild.xml')
-rw-r--r-- | Prebuild/prebuild.xml | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/Prebuild/prebuild.xml b/Prebuild/prebuild.xml new file mode 100644 index 0000000..8538e69 --- /dev/null +++ b/Prebuild/prebuild.xml | |||
@@ -0,0 +1,73 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | <Prebuild xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd" version="1.7"> | ||
3 | <Solution name="Prebuild" version="2.0.3"> | ||
4 | <Configuration name="Debug"> | ||
5 | <Options> | ||
6 | <CompilerDefines>DEBUG;TRACE</CompilerDefines> | ||
7 | <OptimizeCode>false</OptimizeCode> | ||
8 | <OutputPath>bin/Debug</OutputPath> | ||
9 | <DebugInformation>true</DebugInformation> | ||
10 | <SuppressWarnings>1595</SuppressWarnings> | ||
11 | </Options> | ||
12 | </Configuration> | ||
13 | <Configuration name="Release"> | ||
14 | <Options> | ||
15 | <CompilerDefines>TRACE</CompilerDefines> | ||
16 | <OutputPath>bin/Release</OutputPath> | ||
17 | <OptimizeCode>true</OptimizeCode> | ||
18 | <DebugInformation>false</DebugInformation> | ||
19 | <SuppressWarnings>1595</SuppressWarnings> | ||
20 | </Options> | ||
21 | </Configuration> | ||
22 | <Files> | ||
23 | <File>prebuild.xml</File> | ||
24 | <File>prebuild</File> | ||
25 | </Files> | ||
26 | <Project name="Prebuild" | ||
27 | path="src" | ||
28 | language="C#" | ||
29 | assemblyName="prebuild" | ||
30 | icon="App.ico" | ||
31 | type="Exe" | ||
32 | rootNamespace="Prebuild" | ||
33 | startupObject="Prebuild.Prebuild" | ||
34 | version="2.0.3" | ||
35 | > | ||
36 | <Author>Matthew Holmes (matthew@wildfiregames.com)</Author> | ||
37 | <Author>Dan Moorehead (dan05a@gmail.com)</Author> | ||
38 | <Author>Dave Hudson (jendave@yahoo.com)</Author> | ||
39 | <Author>Rob Loach (http://robloach.net)</Author> | ||
40 | <Author>C.J. Adams-Collier (cjac@colliertech.org)</Author> | ||
41 | <Description>The Prebuild project generator</Description> | ||
42 | <Configuration name="Debug"> | ||
43 | <Options> | ||
44 | <CompilerDefines>DEBUG;TRACE</CompilerDefines> | ||
45 | <OptimizeCode>false</OptimizeCode> | ||
46 | <OutputPath>bin/Debug</OutputPath> | ||
47 | <DebugInformation>true</DebugInformation> | ||
48 | <KeyFile>Prebuild.snk</KeyFile> | ||
49 | <SuppressWarnings>1595</SuppressWarnings> | ||
50 | </Options> | ||
51 | </Configuration> | ||
52 | <Configuration name="Release"> | ||
53 | <Options> | ||
54 | <CompilerDefines>TRACE</CompilerDefines> | ||
55 | <OutputPath>bin/Release</OutputPath> | ||
56 | <OptimizeCode>true</OptimizeCode> | ||
57 | <DebugInformation>false</DebugInformation> | ||
58 | <KeyFile>Prebuild.snk</KeyFile> | ||
59 | <SuppressWarnings>1595</SuppressWarnings> | ||
60 | </Options> | ||
61 | </Configuration> | ||
62 | <Reference name="System.EnterpriseServices" /> | ||
63 | <Reference name="System.Xml" /> | ||
64 | <Reference name="System" /> | ||
65 | <Files> | ||
66 | <Match pattern="App.ico" buildAction="EmbeddedResource"/> | ||
67 | <Match path="data" pattern="prebuild-1.7.xsd" buildAction="EmbeddedResource"/> | ||
68 | <Match path="data" pattern="autotools.xml" buildAction="EmbeddedResource"/> | ||
69 | <Match pattern="*.cs" recurse="true"/> | ||
70 | </Files> | ||
71 | </Project> | ||
72 | </Solution> | ||
73 | </Prebuild> | ||