Hi all,
Recently I have checked out jogl project. Could anyone provide some information about start working with sources in any IDE except manual copying?
Thanks.
Hi,
What do you want to do exactly? Do you want to change the JOGL source or do you want to use JOGL to make your own programs who use OpenGL?
You could check if the JOGL Users Guide describes what you want.
Jark
I want to change source. The fact is that I have never worked with cvs When I have checked out the code, in each folder was created CVS-dir… Does any way exist to open checked out sources in an IDE without manual deleting CVS-dirs and/or copying sources?
What do you want to change in the JOGL codebase? Keep in mind that most of the binding is generated, so you might not be able to change too much (except the utility stuff)
I’m not sure what your problem is. The CVS dir contains information about the files and directories contained in the same dir as the CVS dir. Its usefull if you want to retrieve the latest version of the files you have checked out or to compare your version to the one on the CVS.
All sophisticated IDE’s will be able to checkout code from a repository(sometimes it will need a plugin), I am personally using IntelliJ Idea, and it works great.
If you just want to retrieve the latest sources without the CVS directories you could just grab the nightly build sources zip. It’s located on this page --> https://jogl.dev.java.net/#NIGHTLY.
If really want to checkout the CVS and get a source tree without the CVS dirs, you could just make a script in bash or windows cmd to delete all the CVS dirs recursively.
Jark
There is an “-export” command-line switch to check out from cvs without versioning folders.
thanks, I’ll try it.