Hi,
I searched the cmake list archive and found a reference in 2004 about
modifying cmake to generate non-recursive makefiles:
On Jan 30, 2004, at 2:44 PM, William A. Hoffman wrote:
>* Right now there is no way to create non-recursive makefiles.*>* We have some
>plans to create non-recursive mak
Don't know the reason behind this, but this is how we unset it:
#
# Remove /STACK:1000 set by CMake. This value for stack size
# is very high, limiting the number of threads we can spawn.
# Default value used by Windows is 1MB which is good enough.
#
STRING(REGEX REPLAC
You're right. I tried a simple example and it did work. Now I have to find
out why mine didn't. Thanks for your help.
On Jan 24, 2008 3:23 PM, Sahn Lam <[EMAIL PROTECTED]> wrote:
>
>
> On Jan 24, 2008 2:17 PM, Hendrik Sattler <[EMAIL PROTECTED]> wrote:
>
On Jan 24, 2008 2:17 PM, Hendrik Sattler <[EMAIL PROTECTED]> wrote:
> Am Donnerstag 24 Januar 2008 schrieb Sahn Lam:
> > I don't trust myself to be able to specify the dependencies correctly -
> now
> > or in the future. It is not as simple as it seems. For example
On Jan 24, 2008 2:17 PM, Hendrik Sattler <[EMAIL PROTECTED]> wrote:
> Am Donnerstag 24 Januar 2008 schrieb Sahn Lam:
> > I don't trust myself to be able to specify the dependencies correctly -
> now
> > or in the future. It is not as simple as it seems. For example
in the build it will solve my problem.
If anyone has some best practices on this, I'd love to hear it.
Thanks,
Sahn
On Jan 24, 2008 12:32 PM, Hendrik Sattler <[EMAIL PROTECTED]> wrote:
> Am Donnerstag 24 Januar 2008 schrieb Sahn Lam:
> > I have a top level custom target
Hi,
I have a top level custom target that depends on a header file generated by
a custom command. I want this custom target to be invoked first so the
generated header is built before any other targets needing the header are
built.
Adding the ALL keyword to ADD_CUSTOM_TARGET does what I want in