Re: [cmake-developers] Requesting Advice: Installing object files

2017-01-18 Thread Nils Gladitz
On 17.01.2017 23:25, Chris Bieneman wrote: Hello CMake-developers! In one of the LLVM sub-projects we have a problem where we need to install object files, which doesn't seem like a particularly easy task. I'm curious if anyone has any advice on how to approach this problem. The patch is

Re: [cmake-developers] Requesting Advice: Installing object files

2017-01-18 Thread Ben Boeckel
On Wed, Jan 18, 2017 at 10:14:26 +0100, Nils Gladitz wrote: > On 17.01.2017 23:25, Chris Bieneman wrote: > > Hello CMake-developers! > > > > In one of the LLVM sub-projects we have a problem where we need to > > install object files, which doesn't seem like a particularly easy > > task. I'm

[cmake-developers] Multi-line strings with indentation ignored

2017-01-18 Thread Robert Dailey
At the moment, with CMake 3.0 and on, I can use this syntax for multi-line strings: option( ZIOSK_ENABLE_ZPAY_DIAGNOSTICS "\ Enable additional diagnostic logs for zPay related code. \ Should not be enabled for production due to the sensitivity \ and volume of logs that will be printed." ) The

[cmake-developers] pkg_check_modules does not respond to changes.

2017-01-18 Thread Matthew Hanna (BLOOMBERG/ 731 LEX)
There is an optimization in pkg_check_modules that skips processing once a successful execution has occurred and simply leaves the cached return variables as is. As currently implemented, any changes to the parameters of pkg_check_modules, excluding PREFIX, will be ignored following a successful

Re: [cmake-developers] [Discussion] Down with discrimination CPack!

2017-01-18 Thread Alexander Neundorf
On 2017 M01 18, Wed 22:20:14 CET Konstantin Podsvirov wrote: > What about add to CMake language new packaging problematic scopes: > > - COMPONENT; > - COMPONENT_GROUP; > - PACKAGE; > - INSTALLER; > - REPOSITORY? that's a quite terse proposal... Alex -- Powered by www.kitware.com Please

[cmake-developers] [Discussion] Down with discrimination CPack!

2017-01-18 Thread Konstantin Podsvirov
What about add to CMake language new packaging problematic scopes: - COMPONENT;- COMPONENT_GROUP;- PACKAGE;- INSTALLER;- REPOSITORY? --Regards,Konstantin Podsvirov  -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ

Re: [cmake-developers] Requesting Advice: Installing object files

2017-01-18 Thread Ben Boeckel
On Wed, Jan 18, 2017 at 11:47:42 -0800, Chris Bieneman wrote: > On Jan 18, 2017, at 5:58 AM, Ben Boeckel wrote: > > Plus our plan for installing OBJECT libraries was to install them as > > INTERFACE libraries, leaving the objects themselves behind. The idea is > > to

Re: [cmake-developers] Requesting Advice: Installing object files

2017-01-18 Thread Chris Bieneman
> On Jan 18, 2017, at 5:58 AM, Ben Boeckel wrote: > > On Wed, Jan 18, 2017 at 10:14:26 +0100, Nils Gladitz wrote: >> On 17.01.2017 23:25, Chris Bieneman wrote: >>> Hello CMake-developers! >>> >>> In one of the LLVM sub-projects we have a problem where we need to >>>