Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-11-07 Thread Andreas Schneider
On Monday, November 01, 2010 17:18:53 Michał Czuczman wrote: On 10/22/2010 10:58 PM, Ben Boeckel wrote: On Fri, Oct 22, 2010 at 04:45:42PM -0400, Ben Boeckel forgot to attach files Actually attaching things now. --Ben This is still not a perfect solution. 1. The script

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-11-06 Thread Andreas Schneider
On Monday, November 01, 2010 17:18:53 Michał Czuczman wrote: On 10/22/2010 10:58 PM, Ben Boeckel wrote: On Fri, Oct 22, 2010 at 04:45:42PM -0400, Ben Boeckel forgot to attach files Actually attaching things now. --Ben This is still not a perfect solution. 1. The script

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-11-01 Thread Michał Czuczman
On 10/22/2010 10:58 PM, Ben Boeckel wrote: On Fri, Oct 22, 2010 at 04:45:42PM -0400, Ben Boeckel forgot to attach files Actually attaching things now. --Ben This is still not a perfect solution. 1. The script guesses output class file names only from source file names. So one cannot

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-22 Thread Ben Boeckel
On Sat, Oct 16, 2010 at 01:35:27PM +0200, Andreas Schneider wrote: http://git.cynapses.org/users/asn/pki.git/tree/cmake/Modules/UseJava.cmake?h=cmake http://git.cynapses.org/users/asn/pki.git/tree/cmake/Modules/JavaClassFilelist.cmake?h=cmake Hi, These work great, however I did find a few

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-22 Thread Ben Boeckel
On Fri, Oct 22, 2010 at 04:45:42PM -0400, Ben Boeckel forgot to attach files Actually attaching things now. --Ben # # This file provides functions for Java support. # # Available Functions: # # add_jar(TARGET_NAME SRC1 SRC2 .. SRCN RCS1 RCS2 .. RCSN) # # This command create a

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-18 Thread Nicolas Desprès
2010/10/14 Michał Czuczman biu...@gmail.com: On 2010-10-07, 12:57:50, Bill Hoffman wrote: On 10/7/2010 12:37 PM, Ryan Pavlik wrote: On 10/07/2010 09:57 AM, Andreas Schneider wrote: On Thursday 07 October 2010 16:45:49 Andreas Schneider wrote: My current problem is with javah (C header

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-16 Thread Andreas Schneider
On Saturday 16 October 2010 12:13:02 Andreas Schneider wrote: On Friday 15 October 2010 23:13:41 Michał Czuczman wrote: I use CMake for building a multi-platform multi-language project where for most parts it fits very well. However, one part of the project is written in Java, with some

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-15 Thread Jesper Eskilson
On 10/14/2010 10:22 PM, Michał Czuczman wrote: I would be interested in improving Java support in CMake. A source code parser which finds out names of generated output object files, as in the SCons Java support, is a must. That's what the current Java support in CMake lacks the most. I've

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-15 Thread Michał Czuczman
W dniu 15.10.2010 08:40, Jesper Eskilson pisze: On 10/14/2010 10:22 PM, Michał Czuczman wrote: I would be interested in improving Java support in CMake. A source code parser which finds out names of generated output object files, as in the SCons Java support, is a must. That's what the

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-15 Thread Andreas Schneider
On Friday 15 October 2010 23:13:41 Michał Czuczman wrote: I use CMake for building a multi-platform multi-language project where for most parts it fits very well. However, one part of the project is written in Java, with some native implementations. So it would be great to have a nice Java

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-14 Thread Michał Czuczman
On 2010-10-07, 12:57:50, Bill Hoffman wrote: On 10/7/2010 12:37 PM, Ryan Pavlik wrote: * On 10/07/2010 09:57 AM, Andreas Schneider wrote:** On Thursday 07 October 2010 16:45:49 Andreas Schneider wrote:** My current problem is with javah (C header file generator). This** generator**

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-08 Thread Andreas Schneider
On Thursday 07 October 2010 21:32:51 Bill Hoffman wrote: The other issue is VS builds. At one point, I had some magic, cmake language to custom command converter thing going for this, but I am thinking it might be broken. If we did a pure custom-command version, it would work in the IDE's

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-07 Thread Andreas Schneider
On Sunday 22 August 2010 22:11:28 Alexander Neundorf wrote: CMake supports Java, but that support is ... needs some work, there are some issues (I think this had to do with the location of the compiled files and the java packages or something). I assume patches to improve the situation would

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-07 Thread Andreas Schneider
On Thursday 07 October 2010 16:45:49 Andreas Schneider wrote: My current problem is with javah (C header file generator). This generator works on the class files. The class files aren't in CMAKE_CURRENT_BINARY_DIR they are located in:

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-07 Thread Ryan Pavlik
On 10/07/2010 09:57 AM, Andreas Schneider wrote: On Thursday 07 October 2010 16:45:49 Andreas Schneider wrote: My current problem is with javah (C header file generator). This generator works on the class files. The class files aren't in CMAKE_CURRENT_BINARY_DIR they are located in:

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-07 Thread Bill Hoffman
On 10/7/2010 12:37 PM, Ryan Pavlik wrote: On 10/07/2010 09:57 AM, Andreas Schneider wrote: On Thursday 07 October 2010 16:45:49 Andreas Schneider wrote: My current problem is with javah (C header file generator). This generator works on the class files. The class files aren't in

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-07 Thread Andreas Schneider
On Thursday 07 October 2010 18:57:50 Bill Hoffman wrote: The java support was broken a while ago when we re-organized the build trees. I don't have much time to work on this, but I would like to get it fixed. The best approach might be a pure custom command approach. Hi Bill, with some

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-07 Thread Bill Hoffman
On 10/7/2010 2:37 PM, Andreas Schneider wrote: On Thursday 07 October 2010 18:57:50 Bill Hoffman wrote: The java support was broken a while ago when we re-organized the build trees. I don't have much time to work on this, but I would like to get it fixed. The best approach might be a pure

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-10-07 Thread Andreas Schneider
On Thursday 07 October 2010 21:32:51 Bill Hoffman wrote: The other issue is VS builds. At one point, I had some magic, cmake language to custom command converter thing going for this, but I am thinking it might be broken. If we did a pure custom-command version, it would work in the IDE's

Re: [CMake] Is there a tool pretty much like cmake for Java?

2010-08-22 Thread Alexander Neundorf
On Saturday 21 August 2010, Mr Shore wrote: Hi there The best building tool for Java I know so far seems to be maven, but it still doesn't give so much flexibility as cmake at all! Anyone knows a cmake-alike tool for java? CMake supports Java, but that support is ... needs some work, there

[CMake] Is there a tool pretty much like cmake for Java?

2010-08-20 Thread Mr Shore
Hi there The best building tool for Java I know so far seems to be maven, but it still doesn't give so much flexibility as cmake at all! Anyone knows a cmake-alike tool for java? ___ Powered by www.kitware.com Visit other Kitware open-source projects