[CMake] Upcoming AMA on CMake

2018-06-14 Thread Robert Maynard
On June 20th, I plus other Kitware CMake contributors will be doing an AMA on reddit ( r/cpp ). So please ask us any questions about CMake, contributing to CMake, or just life in general. -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.or

[CMake] CMake triggers Windows Defender

2018-06-14 Thread Steve
Windows 10, Windows and Defender updates current. CMake version 3.11.3 I'm preparing build environment for AMM (Advanced Modular Manikin) https://github.com/AdvancedModularManikin/DDS/AMM_Modules My tool chain is MinGW 6.3.0 I followed the build instructions up to cmake and changed /"Unix M

Re: [CMake] [ANNOUNCE] CMake 3.12.0-rc1 is ready for testing

2018-06-14 Thread Rainer Poisel
This is great news, thank you! Transitive dependencies for OBJECT-libraries was one of the major missing features on my side. Will definitely give it a try. Regards, Rainer On Thu, Jun 14, 2018 at 9:11 PM Robert Maynard wrote: > > I am proud to announce the first CMake 3.12 release candidate.

[CMake] [ANNOUNCE] CMake 3.12.0-rc1 is ready for testing

2018-06-14 Thread Robert Maynard
I am proud to announce the first CMake 3.12 release candidate. https://cmake.org/download/ Documentation is available at: https://cmake.org/cmake/help/v3.12 Release notes appear below and are also published at https://cmake.org/cmake/help/v3.12/release/3.12.html Some of the more significan

[CMake] [ANNOUNCE] CMake 3.11.4 available for download

2018-06-14 Thread Robert Maynard
We are pleased to announce that CMake 3.11.4 is now available for download. Please use the latest release from our download page: https://cmake.org/download/ Thanks for your support! - Changes in 3.11.4 since 3.11.3: Brad

[CMake] Distinguishing system and normal dirs in INCLUDE_DIRECTORIES

2018-06-14 Thread Raphael Grimm
Hi, INCLUDE_DIRECTORIES(...) and INCLUDE_DIRECTORIES(SYSTEM ...) both populate the variable INCLUDE_DIRECTORIES. Is there a way to distinguish whether a header was added with or without the system keyword? Best regards, Raphael smime.p7s Description: S/MIME Cryptographic Signature -- P

Re: [CMake] CMake 3.11: Gives wrong paths to ar/strip/etc. when overridden

2018-06-14 Thread Paul Smith
On Thu, 2018-06-14 at 11:41 +0200, Deniz Bahadir wrote: > > But all the other bintools variable overrides do the wrong thing: > > > >* -DCMAKE_AR=my-ar --> CMAKE_AR=/tmp/obj/my-ar > >* -DCMAKE_LINKER=my-ld --> CMAKE_LINKER=/tmp/obj/my-ld > >* -DCMAKE_RANLIB=my-ranlib

Re: [CMake] CMake 3.11: Gives wrong paths to ar/strip/etc. when overridden

2018-06-14 Thread Deniz Bahadir
Am 14.06.2018 um 07:05 schrieb Paul Smith: I've discovered that CMake is not correctly locating ar/strip/etc. if I override the names of these tools on the command line. I've tried this with 3.5.2 as well and I get the same incorrect behavior. Here's an example (this is on a GNU/Linux system):