Re: [cmake-developers] Introduction and volunteering for the Matlab package

2015-02-12 Thread Brad King
On 02/12/2015 11:19 AM, Raffi Enficiaud wrote:
 Please find attached the reworked patch

Thanks.  I'll take a look when I get a chance.

 Use Windows Task Scheduler to run a .bat script that runs ctest on the
 dashboard script you create.
 
 It is really just running the commands in the page you mentioned with
 -DCMake_TEST_FindMatlab=1, right?

The definition needs to be put in the cache of the CMake build itself,
not passed to the ctest script.  To do that, add:

set(dashboard_cache 
CMake_TEST_FindMatlab:BOOL=ON
)

before including the common script.

Thanks,
-Brad

-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers


Re: [cmake-developers] [PATCH] Add support for Generator Expressions within XCODE_ATTRIBUTE target properties

2015-02-12 Thread Brad King
On 02/11/2015 02:48 PM, Gregor Jasny wrote:
 Signed-off-by: Gregor Jasny gja...@googlemail.com

Thanks.  Applied with minor updates and a test for the error case:

 Xcode: Teach XCODE_ATTRIBUTE target properties about generator expressions
 http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=bf8f9c29

-Brad

-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers


Re: [cmake-developers] [CMake 0014317]: Configuration dependent install EXPORT

2015-02-12 Thread Brad King
On 02/11/2015 04:19 AM, opensgu...@web.de wrote:
 Is there any chance the feature to support genex in DESTINATION the
 install() command will be added?

I've implemented it for install(TARGETS):

 http://www.cmake.org/Bug/view.php?id=14317#c37959

That is the important one AFAICT.  For other install() commands more
work would be needed because they do not all already have per-config
actions.

-Brad

-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers


Re: [cmake-developers] Fortran detection, issue 9220

2015-02-12 Thread Alan W. Irwin

Here is one more extremely simple idea for solving this bug.

Assuming all of CMake always errors out using the same piece of
error-processing code, couldn't enable_language(OPTIONAL) immediately
set an internal variable which is honored by that error-processing
code to turn all further errors into warnings? Then the last thing
enable_language(OPTIONAL) should do is unset that variable (so all
further errors are treated as errors) before returning control to the
logic that called enable_language(OPTIONAL).

Of course, this idea depends on the assumption that all CMake errors
are handled by the same piece of error-processing code, but if that is
true this fix should be extremely easy to implement.

Alan
__
Alan W. Irwin

Astronomical research affiliation with Department of Physics and Astronomy,
University of Victoria (astrowww.phys.uvic.ca).

Programming affiliations with the FreeEOS equation-of-state
implementation for stellar interiors (freeeos.sf.net); the Time
Ephemerides project (timeephem.sf.net); PLplot scientific plotting
software package (plplot.sf.net); the libLASi project
(unifont.org/lasi); the Loads of Linux Links project (loll.sf.net);
and the Linux Brochure Project (lbproject.sf.net).
__

Linux-powered Science
__
--

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers


[cmake-developers] [ANNOUNCE] CMake 3.1.3 Released

2015-02-12 Thread Robert Maynard
We are pleased to announce that CMake 3.1.3 is now available for download.

Please use the latest release from our download page:
  http://www.cmake.org/download/

Thanks for your support!

-
Changes in 3.1.3 since 3.1.2:

Brad King (3):
  Do not call setlocale() globally in CMake applications (#15377)
  Add setlocale() calls around use of libarchive APIs (#14934, #15377)
  CMake 3.1.3

Nils Gladitz (1):
  Makefile: Fix regression in target-bound custom command COMMENT output
-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers


Re: [cmake-developers] Introduction and volunteering for the Matlab package

2015-02-12 Thread Raffi Enficiaud

 On 12 Feb 2015, at 19:03, Brad King brad.k...@kitware.com wrote:
 
 
 The definition needs to be put in the cache of the CMake build itself,
 not passed to the ctest script.  To do that, add:
 
 set(dashboard_cache 
 CMake_TEST_FindMatlab:BOOL=ON
 )
 
 before including the common script.
 

Good, I am trying this now. 

- Is there any convention for CTEST_SITE? Would bambooagent.raffienficiaud do?
- What is the preferred configuration to test? Debug or Release?
- Should I do some configuration on the dashboard? I have not found anything in 
particular, except for claiming sites.
- What architectures should be tested?

Thanks,
Raffi Enficiaud


-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers


Re: [cmake-developers] Introduction and volunteering for the Matlab package

2015-02-12 Thread Raffi Enficiaud
Dear Brad,

Please find attached the reworked patch +  some more log in case of error of 
the matlab unit tests.
I rebased the work on master rev 09cdcc5 and squashed the patch as you required.

 Use Windows Task Scheduler to run a .bat script that runs ctest on the
 dashboard script you create.

I use Atlassian bamboo. It is really just running the commands in the page you 
mentioned with -DCMake_TEST_FindMatlab=1, right?
I can test against several environment if you would like. I will start tomorrow.

Regards,
Raffi Enficiaud




0001-Implementation-of-the-new-FindMatlab-module.patch
Description: Binary data


-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers