Re: [cmake-developers] install(EXCLUDE_FROM_ALL) new feature - request for comment

2016-02-04 Thread Nick Lewis
Brad Thank you for looking at adding this feature to 'next'. I am not familiar with git format-patch but i hope you can make use of the attached patch for ​​Help/command/install.rst Best regards Nick​​ On Wed, Feb 3, 2016 at 9:17 PM, Brad King wrote: > On 02/03/2016

Re: [cmake-developers] install(EXCLUDE_FROM_ALL) new feature - request for comment

2016-02-04 Thread Brad King
On 02/04/2016 04:55 AM, Nick Lewis wrote: > I am not familiar with git format-patch After committing locally just run git format-patch HEAD~1.. to construct the patch file. The "~1" specifies the number of commits to go back (via first-parent) and include in the series. > make use of the

Re: [cmake-developers] install(EXCLUDE_FROM_ALL) new feature - request for comment

2016-02-03 Thread Brad King
On 02/03/2016 02:31 PM, Brad King wrote: > install: Add EXCLUDE_FROM_ALL option (#14921) > https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0b6c4729 > > Tests: Add cases for install() command EXCLUDE_FROM_ALL option > https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=670fa897 I've had

Re: [cmake-developers] install(EXCLUDE_FROM_ALL) new feature - request for comment

2016-02-03 Thread Brad King
On 02/01/2016 05:01 AM, Nick Lewis wrote: > https://cmake.org/Bug/view.php?id=14921 Thanks. Actually my request in the issue tracker to post here was meant to have the actual patch file attached so people can see it without digging through the messages and attachments there. Patch revisions or

[cmake-developers] install(EXCLUDE_FROM_ALL) new feature - request for comment

2016-02-01 Thread Nick Lewis
There is currently no way to exclude a component install() from a full installation. Current workarounds using OPTIONAL do not work reliably because they depend on previous builds and on the order of the execution of the build and install commands for the components and the default target Let us

Re: [cmake-developers] install(EXCLUDE_FROM_ALL) new feature - request for comment

2015-07-21 Thread Brad King
On 07/18/2015 02:03 PM, Stephen Kelly wrote: I find the title interesting but I didn't attempt to read the email. Please make a proposal instead of just dumping a tree of text For reference, the text is from the issue tracker entry: No way to exclude a component install() from a full

Re: [cmake-developers] install(EXCLUDE_FROM_ALL) new feature - request for comment

2015-07-18 Thread Stephen Kelly
Nick Lewis wrote: Thanks for working on this. I think it will be better discussed on the cmake-developers mailing list I find the title interesting but I didn't attempt to read the email. Please make a proposal instead of just dumping a tree of text which can not be followed:

[cmake-developers] install(EXCLUDE_FROM_ALL) new feature - request for comment

2015-07-17 Thread Nick Lewis
There is currently no way to exclude a component install() from a full installation. Current workarounds using OPTIONAL do not work reliably because they depend on previous builds and on the order execution of the build and install commands for the components and the default target Steps to