Re: [OpenBabel-Devel] CMake and VCBuild issue

2012-06-17 Thread N David Brown
Thanks for this Noel. I realise there was no java build flag in CTest after I last emailed you, have added it now. Will be in touch again soon Dave On 17 June 2012 11:41, Noel O'Boyle baoille...@gmail.com wrote: Sounds good. It should take the same time as in the GUI. But on subsequent

Re: [OpenBabel-Devel] CMake and VCBuild issue

2012-06-16 Thread N David Brown
One more question for you: where can I find openbabel.jar in SVN? I'd like to configure the POM to download the latest version when building, to accompany the latest sources that ctest pulls in. Dave On 17 June 2012 00:27, N David Brown hubd...@gmail.com wrote: ..so I'm back home again and

Re: [OpenBabel-Devel] CMake and VCBuild issue

2012-06-12 Thread Noel O'Boyle
Please find attached a ctest script you can run as follows: ctest -S ob-win-tmp.cmake -VV cmake-build.out (-VV is verbose output, which is useful in case of problems) If you look through the script it should make sense, apart from the reference to CVS which is a quirk of ctest. BTW, before

Re: [OpenBabel-Devel] CMake and VCBuild issue

2012-06-11 Thread Noel O'Boyle
Have you tried first of all compiling it as per the instructions? http://openbabel.org/docs/dev/Installation/install.html#windows-msvc Here is the command that ctest uses on my machine to compile everything at the command-line: C:\PROGRA~2\MICROS~1.0\Common7\IDE\VCExpress.exe openbabel.sln /build

Re: [OpenBabel-Devel] CMake and VCBuild issue

2012-06-11 Thread N David Brown
Hi Noel, I've built it the standard way several times before. I'm now configuring my own maven project to build the latest version from SVN automatically if it's not found locally. The configuration's set up for CMake, it's just the build command I need to get right. Thank you for providing that

Re: [OpenBabel-Devel] CMake and VCBuild issue

2012-06-11 Thread Noel O'Boyle
Sounds good. Sorry - I just realised something that should make things easier. Perhaps the best way to do this is actually via a ctest script as you don't have to hardcode the compiler path. The one we use for our nightly builds does 4 things: (1) check out of SVN (or else update), (2) build, (3)

Re: [OpenBabel-Devel] CMake and VCBuild issue

2012-06-11 Thread N David Brown
If it's not much trouble that would be great, Noel. I'd not heard of CTest but have looked it up now - it makes perfect sense to have CMake perform the build. This is actually ideal, as it should allow me to create a complete pom.xml for OB that you can include in the JAR from now on. If done