building JOGL--artifact.properties

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

building JOGL--artifact.properties

Andy Skinner
I'm trying to build JOGL, as downloaded from git yesterday.  I've built JOGL from Sun (now Oracle) in the past, and am trying this one.  (I really want the dispose() method on the GLEventListener, and hope a stable release will be out soon.)

I'm fitting the source code in with a build system in which we'd wrapped up the old JOGL.  I'll try something simpler in a bit, but in the meantime, does this error give a clue?


tag.build:

BUILD FAILED
<path>/jogl/make/build.xml:328: Warning: Could not find file <path>/gluegen/build/artifact.properties to copy.


I've removed some bits of my own paths here, but there isn't anything wrong with the paths.  build.xml is looking to copy artifact.properties in the location mentioned, and that file does not exist in the place it is looking for it.  Should it be there?


thanks,
andy
Reply | Threaded
Open this post in threaded view
|

Re: building JOGL--artifact.properties

Sven Gothel
Administrator
On Tuesday, October 04, 2011 04:38:11 PM Andy Skinner [via jogamp] wrote:
> but in the meantime,
> does this error give a clue?
>
>
> tag.build:
>
> BUILD FAILED
> <path>/jogl/make/build.xml:328: Warning: Could not find file
> <path>/gluegen/build/artifact.properties to copy.

You need to build gluegen from the folder gluegen/make first,
as advertised in our HowToBuild Wiki/Doc.
This will create gluegen's artifact.properties.

~Sven
Reply | Threaded
Open this post in threaded view
|

Re: building JOGL--artifact.properties

Andy Skinner
Thanks.

You mean this page?
http://jogamp.org/jogl/doc/HowToBuild.html


I was following that, and don't see to build gluegen first:

Here are the steps that are required in order to build JOGL.

1.Optain the source code using git:
    ... steps for using git ...

2.Unset your CLASSPATH environment variable:
   ...
3.Optional Copy and edit gluegen.properties:
   ...
4.Optional Copy and edit jogl.properties:
   ...
5.Build the source tree:
Open a command shell in the "jogl/make" directory of the source tree and type "ant".


Would you mind clarifying that?

thanks,
andy
Reply | Threaded
Open this post in threaded view
|

Re: building JOGL--artifact.properties

Sven Gothel
Administrator
On Wednesday, October 05, 2011 04:39:54 PM Andy Skinner [via jogamp] wrote:

>
> Thanks.
>
> You mean this page?
> http://jogamp.org/jogl/doc/HowToBuild.html
>
>
> I was following that, and don't see to build gluegen first:
>
> Here are the steps that are required in order to build JOGL.
>
> 1.Optain the source code using git:
>     ... steps for using git ...
>
> 2.Unset your CLASSPATH environment variable:
>    ...
> 3.Optional Copy and edit gluegen.properties:
>    ...
> 4.Optional Copy and edit jogl.properties:
>    ...
> 5.Build the source tree:
> Open a command shell in the "jogl/make" directory of the source tree and
> type "ant".
>
>
> Would you mind clarifying that?

Oops .. good catch :)

5a)
> Open a command shell in the "gluegen/make" directory of the source tree and
> type "ant".

5b)
> Open a command shell in the "jogl/make" directory of the source tree and
> type "ant".

will fix it soon, thank you.

>
> thanks,
> andy

~Sven