Re: [cmake-developers] Extracting target metadata, IDE integration

2014-09-22 Thread Aleix Pol
On Fri, Sep 19, 2014 at 7:44 PM, Brad King wrote: > On 09/18/2014 08:10 PM, Aleix Pol wrote: > > I added a CMAKE_OUTPUT_PROJECT_TARGETS variable that can be used to > > enable the generation of the file. > > I also renamed the file to ProjectTargets.json. > > > > http://www.proli.net/meu/kdevelop

[cmake-developers] [CMake 0015169]: CPackRPM: component-specific settings "fall through" to next component

2014-09-22 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=15169 == Reported By:Sam Hartsfield Assigned To:

Re: [cmake-developers] [PATCH] stage/compact-status-log

2014-09-22 Thread Adam Strzelecki
> IMO that is too much infrastructure to solve what is essentially > a cosmetic problem. Well, IMHO it is usability problem, because cmake emits simply too much (redundant) information. FYI I have pushed new stage/compact-status-log which does include this automatic subsequent status log line m

Re: [cmake-developers] How to get a nightly build process going.

2014-09-22 Thread Brad King
On 09/22/2014 12:08 PM, dev wrote: > Please see last comment at > http://public.kitware.com/Bug/view.php?id=15166 [snip] > Your nightly process needs to have mercurial around it seems and not > subversion or git which I have. Only git is needed. If hg or svn is available some extra tests are acti

Re: [cmake-developers] [PATCH] stage/compact-status-log

2014-09-22 Thread Brad King
On 09/22/2014 12:26 PM, Adam Strzelecki wrote: > stdout & stderr are duped and proxied by some background thread. IMO that is too much infrastructure to solve what is essentially a cosmetic problem. -Brad -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at:

Re: [cmake-developers] [PATCH] stage/compact-status-log

2014-09-22 Thread Adam Strzelecki
> What if stdout's buffer happens to fill up and flush anyway? I think I can provide other terminal-less solution via filtering stdout and stderr via pipe and background thread. I got some proof-of-concept program already. Idea is: stdout & stderr are duped and proxied by some background thread

[cmake-developers] Fwd: Re: How to get a nightly build process going.

2014-09-22 Thread dev
Please see last comment at http://public.kitware.com/Bug/view.php?id=15166 -- Original Message -- Date: September 1, 2014 at 2:35 PM Subject: Re: [cmake-developers] How to get a nightly build process going. Back on topic... > Solaris 10 + SolarisStudio > http://open.cdash.org/

Re: [cmake-developers] [CMake] Integrating ExternalData with Artifactory

2014-09-22 Thread Taylor Braun-Jones
On Mon, Sep 22, 2014 at 10:07 AM, Brad King wrote: > Perhaps: > > list(APPEND ExternalData_URL_TEMPLATES > "ExternalDataCustomScript://MyFetch/%(algo)/%(hash)" > ) > set(ExternalData_CUSTOM_SCRIPT_MyFetch /path/to/MyFetch.cmake) > > The script would be include()-ed in place of the cur

Re: [cmake-developers] [PATCH] VS, WINCE: Only set EntryPointSymbol for executables

2014-09-22 Thread Brad King
On 09/22/2014 10:19 AM, Pascal Bach wrote: > --- > Source/cmVisualStudio10TargetGenerator.cxx | 10 -- > 1 file changed, 8 insertions(+), 2 deletions(-) VS, WINCE: Only set EntryPointSymbol for executables http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e7aeb79f Thanks, -Brad --

[cmake-developers] [PATCH] VS, WINCE: Only set EntryPointSymbol for executables

2014-09-22 Thread Pascal Bach
--- Source/cmVisualStudio10TargetGenerator.cxx | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 4b5c83f..e0a32a2 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx ++

Re: [cmake-developers] [PATCH] WINCE: Add toolchain documentation for Windows CE

2014-09-22 Thread Bach, Pascal
> Thanks. I split that into two commits with slight edits, and added > my own commit to add subsections for Windows Phone and Store: > > Help: Add Cross Compiling subsections in cmake-toolchains.7 manual > http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0d72451a > > Help: Add Windows CE

Re: [cmake-developers] Extracting target metadata, IDE integration

2014-09-22 Thread Brad King
On 09/20/2014 09:18 AM, Stephen Kelly wrote: > I don't know why I added it. > > There is also a 'new' > > +location += "/"; > > in that patch further down which might be removable. Thanks for pointing that one out too. I've removed both with a commit message that explains one hypothesis a

Re: [cmake-developers] [PATCH] stage/compact-status-log

2014-09-22 Thread Brad King
On 09/21/2014 12:45 PM, Adam Strzelecki wrote: > I have pushed new branch stage/compact-status-log for review. Neat. > Idea behind is to reduce cmake output when we are in terminal. > When we are outputting message "Trying feature" we can later > remove it when new output comes using ANSI escape

Re: [cmake-developers] [PATCH] FindCUDA: Wrap keyword in if() string comparison

2014-09-22 Thread Brad King
On 09/21/2014 02:48 PM, Adam Strzelecki wrote: > FYI unfortunately this solution does not work for CMakeFiles.txt > with cmake_minimum_required(VERSION 2.6.1) or earlier because of > CMP0011 that does implicit PUSH/POP does not work there. So > setting cmake_policy(SET CMP0054 NEW) is internal modu

Re: [cmake-developers] [PATCH] Prevent compilers to be silently modified when using Ninja, generator

2014-09-22 Thread Brad King
On 09/20/2014 04:55 PM, Sylvain Joubert wrote: > Please find attached a patch that fixes Ninja generator. Applied, thanks: Ninja: Prevent compilers to be silently modified http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6120fca8 -Brad -- Powered by www.kitware.com Please keep messages on

Re: [cmake-developers] [CMake] Integrating ExternalData with Artifactory

2014-09-22 Thread Brad King
On 09/19/2014 06:07 PM, Taylor Braun-Jones wrote: > On Fri, Sep 19, 2014 at 3:04 PM, Brad King wrote: >> I think it can be activated by a special format of an entry in >> ExternalData_URL_TEMPLATES that specifies a lookup key that maps >> to some kind of custom configuration of a .cmake script to i

Re: [cmake-developers] Extracting target metadata, IDE integration

2014-09-22 Thread Stephen Kelly
Tobias Hunger wrote: > The first is should this be run in a terminal or is this a GUI. Not > sure whether cmake has that information. CMake only knows whether the WIN32_EXECUTABLE property has been set on a target. http://www.cmake.org/cmake/help/v3.0/prop_tgt/WIN32_EXECUTABLE.html The proper

[cmake-developers] [CMake 0015168]: incomplete builds with CMake, Make backend

2014-09-22 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=15168 == Reported By:dhardy Assigned To:

Re: [cmake-developers] Extracting target metadata, IDE integration

2014-09-22 Thread Nils Gladitz
On 09/22/2014 03:39 PM, Stephen Kelly wrote: Nils Gladitz wrote: Might be nice for platforms where RPATHs aren't supported (e.g. Windows) though a generic, non IDE specific solution might be preferable: The proposed ProjectTargets.json isn't particularly IDE specific. That's only the motivat

Re: [cmake-developers] Extracting target metadata, IDE integration

2014-09-22 Thread Stephen Kelly
Nils Gladitz wrote: > Might be nice for platforms where RPATHs aren't supported (e.g. Windows) > though a generic, non IDE specific solution might be preferable: > The proposed ProjectTargets.json isn't particularly IDE specific. That's only the motivation. Thanks, Steve. -- Powered by ww

Re: [cmake-developers] Extracting target metadata, IDE integration

2014-09-22 Thread Nils Gladitz
On 09/20/2014 09:57 PM, Tobias Hunger wrote: Hello! Sorry for breaking the threading, I only joined this ML just now to comment on this thread:-) Thanks Stephen for pointing me here! I am not a regular cmake user (used to be a couple of years ago), but I im interested in this topic since I work

[cmake-developers] [CMake 0015167]: How to detect --debug-output and/or --trace

2014-09-22 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=15167 == Reported By:kurt.dupont Assigned To: