aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-08-08 14:33:56 +0200
committerSven Gothel <[email protected]>2023-08-08 14:33:56 +0200
commit4c5f3d8e589016e17ac3f1aad6a5c26bc21efe2f (patch)
treef5ab3e59beff0d5d2385a1936689f161af0c464b /src
parent0e6d18c6b6d46b54e679ce0c44613e21e58245f2 (diff)
Bump jcpp (merged w/ jcpp upstream v1.4.14) and adopt to changes
Diffstat (limited to 'src')
-rw-r--r--src/junit/com/jogamp/gluegen/test/junit/generation/BuildEnvironment.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/BuildEnvironment.java b/src/junit/com/jogamp/gluegen/test/junit/generation/BuildEnvironment.java
index e8fb24d..02f2761 100644
--- a/src/junit/com/jogamp/gluegen/test/junit/generation/BuildEnvironment.java
+++ b/src/junit/com/jogamp/gluegen/test/junit/generation/BuildEnvironment.java
@@ -38,9 +38,10 @@ import static java.lang.System.*;
*/
public final class BuildEnvironment {
+ public static final String rootrel_build;
public static final String gluegenRoot;
public static final String testOutput;
- public static final String rootrel_build;
+ public static final String build;
static {
@@ -63,8 +64,10 @@ public final class BuildEnvironment {
gluegenRoot = gluegen_root_tmp;
out.println("gluegen.root: " + gluegenRoot);
- testOutput = gluegenRoot + "/" + rootrel_build + "/test";
+ build = gluegenRoot + "/" + rootrel_build;
+ out.println("build: " + build);
+ testOutput = build + "/test";
out.println("testOutput: "+testOutput);
out.println(" - - - - - - - - - - - - ");
}