blob: a7c6315a63b73c4e85b67708182bed588737d85e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
- This Ant project file depends on properties being set
- via gluegen.properties, see: gluegen.properties !
-
- This Ant project file depends on the following properties being set
- externally:
-
- win32.c.compiler (required to be set on Windows):
- one of "vc6", "vc7", "vc8", or "mingw".
- c.compiler.debug:
- set to "true" if debug version of the compiled
- C code is desired.
-
- MacOsX libraries can be universal / fat binaries.
- The following switches enables/disables a target platform.
- If non of them is enabled, the default
- compiler target platform is used for a thin binary.
-
- macosppc:
- set to "true" for ppc support,
- default is 'false'
- Note: Unsupported on Snow Leopard!
- macosx32:
- set to "false" to disable x86 32-bit support,
- default is 'true'
- macosx64:
- set to "false" to disable x86 64-bit support,
- default is 'true'
-
-->
<project name="GlueGen-properties" basedir=".">
<target name="gluegen.properties.load.user" unless="gluegen.user.properties.file.set">
<!-- Load the user specified properties file that defines various host
- specific paths. The user will be notified if this is does not
- exist. -->
<property name="gluegen.user.properties.file" value="${user.home}/gluegen.properties"/>
<property name="gluegen.user.properties.file.set" value="${gluegen.user.properties.file}"/>
<property file="${gluegen.user.properties.file.set}" />
<echo message="Loaded ${gluegen.user.properties.file.set}." />
<property name="antlr.jar" value="${gluegen.root}/make/lib/antlr.jar" />
<property name="junit.jar" value="${gluegen.root}/make/lib/junit.jar" />
<property name="win32.c.compiler" value="mingw" />
<echo message="antlr.jar=${antlr.jar}" />
<echo message="junit.jar=${junit.jar}" />
<echo message="win32.c.compiler=${win32.c.compiler}" />
</target>
</project>
|