diff options
author | Brad King <brad.king@kitware.com> | 2005-04-13 16:46:09 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-04-13 16:46:09 -0400 |
commit | caf54b20931408c1b5d878b1cf2a76147ab61454 (patch) | |
tree | 2e36fb6442662190452b2a0653cf5648c6f10e5a /Source/kwsys/Base64.c | |
parent | 826405a1b668900ef4d5ecc0b676197e978bb80f (diff) | |
download | cmake-caf54b20931408c1b5d878b1cf2a76147ab61454.tar.gz |
COMP: Adding work-around for CMake dependency scanning limitation. Any configured header included by KWSYS_HEADER() in a .c or .cxx file in kwsys itself must use this hack to get dependencies.
Diffstat (limited to 'Source/kwsys/Base64.c')
-rw-r--r-- | Source/kwsys/Base64.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/kwsys/Base64.c b/Source/kwsys/Base64.c index 0c5e44f27b..8960428258 100644 --- a/Source/kwsys/Base64.c +++ b/Source/kwsys/Base64.c @@ -15,6 +15,12 @@ #include "kwsysPrivate.h" #include KWSYS_HEADER(Base64.h) +/* Work-around CMake dependency scanning limitation. This must + duplicate the above list of headers. */ +#if 0 +# include "Base64.h.in" +#endif + /*--------------------------------------------------------------------------*/ static const unsigned char kwsysBase64EncodeTable[65] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" |