Re: [cmake-developers] GenerateExportHeader macro in CMake?

2011-08-25 Thread Stephen
On 08/24/2011 08:49 PM, David Cole wrote: On Wed, Aug 24, 2011 at 2:27 PM, Stephen Kellysteve...@gmail.com wrote: David Cole wrote: The test itself passes on AIX, as seen here: http://www.cdash.org/CDash/testDetails.php?test=109727151build=1460504 It's only the particular machine that you

Re: [cmake-developers] GenerateExportHeader macro in CMake?

2011-08-25 Thread David Cole
On Thu, Aug 25, 2011 at 12:35 PM, Stephen steve...@gmail.com wrote: On 08/24/2011 08:49 PM, David Cole wrote: On Wed, Aug 24, 2011 at 2:27 PM, Stephen Kellysteve...@gmail.com  wrote: David Cole wrote: The test itself passes on AIX, as seen here:

Re: [cmake-developers] GenerateExportHeader macro in CMake?

2011-08-24 Thread Stephen Kelly
Stephen Kelly wrote: Yep, I've just had a look and possibily fixed the Intel and HPUX cases. I did indeed fix the Intel and HPUX cases. The AIX one fails because the visibility test passes, because check_cxx_compiler_flag does not have a FAIL_REGEX for its warning:

Re: [cmake-developers] GenerateExportHeader macro in CMake?

2011-08-24 Thread David Cole
On Wed, Aug 24, 2011 at 2:02 PM, Stephen Kelly steve...@gmail.com wrote: Stephen Kelly wrote: Yep, I've just had a look and possibily fixed the Intel and HPUX cases. I did indeed fix the Intel and HPUX cases. Thank you. The AIX one fails because the visibility test passes, because

Re: [cmake-developers] GenerateExportHeader macro in CMake?

2011-08-24 Thread Stephen Kelly
David Cole wrote: The test itself passes on AIX, as seen here: http://www.cdash.org/CDash/testDetails.php?test=109727151build=1460504 It's only the particular machine that you pointed to that has problems. There are *several* tests that fail on that machine with the space in the path.

Re: [cmake-developers] GenerateExportHeader macro in CMake?

2011-08-24 Thread David Cole
On Wed, Aug 24, 2011 at 2:27 PM, Stephen Kelly steve...@gmail.com wrote: David Cole wrote: The test itself passes on AIX, as seen here: http://www.cdash.org/CDash/testDetails.php?test=109727151build=1460504 It's only the particular machine that you pointed to that has problems. There are

Re: [cmake-developers] GenerateExportHeader macro in CMake?

2011-08-23 Thread David Cole
On Thu, Aug 11, 2011 at 11:30 AM, Stephen Kelly steve...@gmail.com wrote: David Cole wrote: Stephen, Welcome to CMake development :-) Thanks :), Brad and I are both fairly busy this week. Please continue making fixes and merging them into 'next' for dashboard testing as you are

Re: [cmake-developers] GenerateExportHeader macro in CMake?

2011-08-23 Thread Stephen Kelly
David Cole wrote: Hi Stephen, So... this topic is in 'next', and today, it only fails on 4 dashboards in total. I will try to get output for you on the wcl (Watcom) compiler dashboard -- since it timed out, there is no test output reported on CDash...

Re: [cmake-developers] GenerateExportHeader macro in CMake?

2011-08-10 Thread David Cole
Stephen, The test you recently added is failing on many platforms on the CMake dashboard today. Are you working on resolving these test failures? This output: *** Exception executing: Exit code 0xc135 means that one of the dlls could not be loaded properly by the built executable. Are you

Re: [cmake-developers] GenerateExportHeader macro in CMake?

2011-08-10 Thread David Cole
Make that CMAKE_RUNTIME_OUTPUT_DIRECTORY ... On Wed, Aug 10, 2011 at 1:58 PM, David Cole david.c...@kitware.com wrote: Stephen, The test you recently added is failing on many platforms on the CMake dashboard today. Are you working on resolving these test failures? This output: ***

Re: [cmake-developers] GenerateExportHeader macro in CMake?

2011-08-10 Thread Bill Hoffman
I worked with Stephen today on this and it needs to put all the dll's in the same place as the main executable. The following makes the test pass on my windows box: diff --git a/Tests/Module/GenerateExportHeader/CMakeLists.txt b/Tests/Module/GenerateExportH index 6374087..0f5d792 100644 ---

Re: [cmake-developers] GenerateExportHeader macro in CMake?

2011-08-02 Thread Brad King
On 8/2/2011 3:40 AM, Stephen Kelly wrote: Brad King wrote: I've now also tested with MSVC and MinGW on Windows. I couldn't seem to get cmake to work on cygwin though. I'll see if I can test on Mac too before pushing to the cmake repo. One question I have is: Will the unit tests for this be run

[cmake-developers] GenerateExportHeader macro in CMake?

2011-07-13 Thread Stephen Kelly
Hi, I've been working on my GenerateExportHeader macro described here: http://thread.gmane.org/gmane.comp.programming.tools.cmake.user/36664 The result is here: https://gitorious.org/~steveire/cmake/steveires- cmake/commit/a80318ae6a299f44de8597d4ee705278554b7a4a The problem is that the unit