Re: [cmake-developers] Drop support for older Xcode versions?

2016-02-18 Thread Davy Durham
Actually we have to keep an os x 10.8 box up with the 10.7 sdk using xcode 4.2 targeting 10.6. Apple long ago stopped allowing you to target such old APIs in more recent xcodes. Sent from my personalized C Spire Galaxy S III Original message From: Sean McBride

Re: [cmake-developers] Drop support for older Xcode versions?

2016-02-18 Thread Sean McBride
On Wed, 10 Feb 2016 15:25:31 -0800, Eric Wing said: >On 2/9/16, Davy Durham wrote: >> I'll say that in my line of work, we still have to support OS X 10.6 >> (just dropped 10.5 support) .. And we're doing this at Apple's own >> request/demand! It's not fun. I've had to

[cmake-developers] [ANNOUNCE] CMake 3.5.0-rc3 is now ready!

2016-02-18 Thread Robert Maynard
I am proud to announce the third CMake 3.5 release candidate. Sources and binaries are available at: https://cmake.org/download/ Documentation is available at: https://cmake.org/cmake/help/v3.5 Release notes appear below and are also published at

Re: [cmake-developers] [Qt-creator] CMake daemon for user tools

2016-02-18 Thread Alexander Neundorf
On Wednesday, February 17, 2016 22:59:36 Stephen Kelly wrote: > On 02/15/2016 07:24 PM, Tobias Hunger wrote: > > Hi Dominik, > > > > Am 15.02.2016 19:01 schrieb "Dominik Haumann" > > > >: > > > 1. Wouldn't it make sense you have a developer sprint

Re: [cmake-developers] install(EXPORT) with PRIVATE dependency: possible bug

2016-02-18 Thread Brad King
On 01/15/2016 10:26 AM, Brad King wrote: > Fix export of STATIC library PRIVATE dependencies with CMP0022 NEW > https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=aea1b036 That turned out to introduce a regression when the private dependency is not a target. Here is a fix to both problems and

Re: [cmake-developers] Bugfix for CPack / CPACK_INSTALL_CMAKE_PROJECTS

2016-02-18 Thread Brad King
On 02/17/2016 05:31 PM, Daniel Wirtz wrote: > here's a patch (based on current master > ed1b3430fcfc906780b68fe4a073590c6d23ff08) that at least gets this going. > i believe if no one yet complained about the missing feature, it may as > well stay as "unsupported" as its been before - at least

Re: [cmake-developers] Support of Scala language

2016-02-18 Thread Brad King
On 02/18/2016 06:28 AM, CHEVRIER, Marc wrote: > Currently, there is a module UseJava.cmake which mix two aspects: This module is not a good example of how to do a language in CMake. It somehow became the way to do Java in CMake because the builtin support for enable_language(Java) was never

[cmake-developers] C# support ready for review (update)

2016-02-18 Thread Stuermer, Michael SP/HZA-ZSEP
Hello all, here is an update of the C# support patch. I fixed the errors & discrepancies reported by Gilles. Hope it looks better now. My development branch can be found here: https://github.com/micst/CMake/tree/csharp It is in the same state as the patch, but includes a few changes which I

Re: [cmake-developers] [Qt-creator] CMake daemon for user tools

2016-02-18 Thread Aleix Pol
On Wed, Feb 17, 2016 at 10:59 PM, Stephen Kelly wrote: > On 02/15/2016 07:24 PM, Tobias Hunger wrote: > > Hi Dominik, > > Am 15.02.2016 19:01 schrieb "Dominik Haumann" : >> 1. Wouldn't it make sense you have a developer sprint ASAP for this? > > I'd be in,

Re: [cmake-developers] C# support ready for review

2016-02-18 Thread Stuermer, Michael SP/HZA-ZSEP
Hi Gilles, you are right about the specific user path. I already fixed this in my github "csharp" branch. Sorry for the inconvenience. As for the discrepancies: I just found out that my TortoiseGitMerge tool was not configured correctly: changes in comments where ignored (which is not what I

[cmake-developers] Support of Scala language

2016-02-18 Thread CHEVRIER, Marc
Hi, I have just started to work to extend CMake to support Scala language. This language is very similar to Java regarding compilation (scala compiler generates .class (java byte code)) and packaging (binary files can be packaged in jar files) and is running as part of JVM infrastructure.