[cmake-developers] [ANNOUNCE] CMake 3.12.0-rc3 is ready for testing

2018-07-09 Thread Robert Maynard
I am proud to announce the third CMake 3.12 release candidate. https://cmake.org/download/ The first two 3.12.0 release candidates included a change to allow the target_link_libraries command to modify targets created outside the current directory. This has been reverted in rc3 due to problems

Re: [cmake-developers] why can target_include_directories() not be applied to custom targets?

2018-07-09 Thread Attila Krasznahorkay
Hi, Just to say that setting INCLUDE_DIRECTORIES on a custom target is indeed a bit of an obscure thing, but we do use it. You can find the full reasoning in: https://gitlab.kitware.com/cmake/cmake/issues/16830 Because of that, I understood that CMake will provide this functionality in the

Re: [cmake-developers] why can target_include_directories() not be applied to custom targets?

2018-07-09 Thread Drew Parsons
On Mon, 2018-07-09 at 16:02 +0300, Attila Krasznahorkay wrote: > Hi, > > Just to say that setting INCLUDE_DIRECTORIES on a custom target is > indeed a bit of an obscure thing, but we do use it. You can find the > full reasoning in: > > https://gitlab.kitware.com/cmake/cmake/issues/16830 > >