Re: [CMake] add_subdirectory inheritance (patch)

2012-04-19 Thread irukandji
Ok, guys, catch... source base is 2.8.7. add_subdirectory(source_dir [binary_dir] [EXCLUDE_FROM_ALL] [NOINHERIT]) /.../ If the NOINHERIT argument is provided, the subdirectory build configuration will not inherit any preprocessor, compiler or linker specific parameters.

Re: [CMake] add_subdirectory inheritance (patch)

2012-04-19 Thread David Cole
So, wait. This intends to avoid inheritance of preprocessor, compiler and linker stuff, but it still allows inheritance of all other directory properties and CMake variable values...? On Thu, Apr 19, 2012 at 5:04 AM, irukandji irukan...@voidptr.eu wrote: Ok, guys, catch... source base is 2.8.7.

Re: [CMake] add_subdirectory inheritance (patch)

2012-04-19 Thread irukandji
What my thought was: if you are adding the subdirectory, you want to keep what is stored within the cmake variables so you can fine grain what to use and not to use in subdirectory or pass just some settings from caller, if this would be also removed there would be no way to pass anything to

Re: [CMake] add_subdirectory inheritance (patch)

2012-04-19 Thread David Cole
If that's the case then NOINHERIT is not the correct name for this. (Because that, to me, primarily implies CMake variable value inheritance, and directory properties, and everything that inherits.) On Thu, Apr 19, 2012 at 8:48 AM, irukandji irukan...@voidptr.eu wrote: What my thought was:

Re: [CMake] add_subdirectory inheritance (patch)

2012-04-19 Thread irukandji
Change it to whatever you want :) Search and replace is for me much easyer then to workaround the inheritance :) regards, irukandji On 2012-04-19 14:56, David Cole wrote: If that's the case then NOINHERIT is not the correct name for this. (Because that, to me, primarily implies CMake variable