aboutsummaryrefslogtreecommitdiffstats
path: root/make/gluegen.compiler.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-03-25 22:49:16 +0100
committerSven Gothel <[email protected]>2010-03-25 22:49:16 +0100
commit9a1b43908b3bb1cd5dd5fadafb3b23d6e9a2cf46 (patch)
treea73f826bae48eaf9132403511e9f20742463e1a9 /make/gluegen.compiler.xml
parent3a32650d4229f9b4ad1f527d9e30c24ddb69bb3f (diff)
http://www.jogamp.org/bugzilla/show_bug.cgi?id=390
Adding 'plain' junit tests. Plain stands for the simple processing of: ant.junit.compile: gluegen -> java/c files, javac/cc, jar ant.junit.run: junit batch run Avoiding 'black magic', ie kicking off gluegen and ant-compilation from within the junit tests. Same methodology as the JOGL junit tests, junit test sources are under 'src/junit' This way, the migration to other platform tests might be easier, as well as the we don't need to pass through ant properties (ant - junit - ant), see 3a32650d4229f9b4ad1f527d9e30c24ddb69bb3f.
Diffstat (limited to 'make/gluegen.compiler.xml')
-rw-r--r--make/gluegen.compiler.xml36
1 files changed, 0 insertions, 36 deletions
diff --git a/make/gluegen.compiler.xml b/make/gluegen.compiler.xml
deleted file mode 100644
index 7d94567..0000000
--- a/make/gluegen.compiler.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- This is an example of how to add custom compiler/linker
- arguments for a crosscompiler.
-
- You can use such files with setting the property 'gluegen.user.compiler.file', ie:
-
- -Dgluegen.user.compiler.file=`pwd`/lib/gluegen.compiler.xml
-
- or by having such file in your home directory, ie:
-
- ~/gluegen.compiler.xml
- -->
-
-<project name="GlueGen-cpptasks" basedir="." >
-
-<target name="gluegen.cpptasks.configure.compiler" depends="setup.java.home.dir">
- <compiler id="compiler.cfg.linux" name="gcc">
- <compilerarg value="-m32" />
- <compilerarg value="-Wall" />
- <compilerarg value="-I/devtools/i686-unknown-linux-gnu/include" />
- <compilerarg value="-I/devtools/share/include" />
- <compilerarg value="-I/devtools/i686-unknown-linux-gnu/xfree86-4.3.0-linux-ix86-glibc23/include" />
- <defineset>
- <define name="LINUX" />
- </defineset>
- </compiler>
-
- <linker id="linker.cfg.linux" name="gcc">
- <linkerarg value="-m32" />
- <linkerarg value="-L/devtools/i686-unknown-linux-gnu/lib" />
- <linkerarg value="-L/devtools/i686-unknown-linux-gnu/xfree86-4.3.0-linux-ix86-glibc23/lib" />
- </linker>
-</target>
-</project>