diff options
author | Brad King <brad.king@kitware.com> | 2008-05-12 21:43:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-05-12 21:43:45 (GMT) |
commit | 771bdb7ef84b99f29b87c5424a78daf1d49c9dc7 (patch) | |
tree | d441dabefe0a3e05aee18941277bc39498035e8f /Source/cmGlobalGenerator.h | |
parent | 96525cf3c36650e2257f37a63d61a1244e4aa486 (diff) | |
download | CMake-771bdb7ef84b99f29b87c5424a78daf1d49c9dc7.zip CMake-771bdb7ef84b99f29b87c5424a78daf1d49c9dc7.tar.gz CMake-771bdb7ef84b99f29b87c5424a78daf1d49c9dc7.tar.bz2 |
BUG: Make sure all source files are found before generating.
- Previously this was done implicitly by the check for a target
link language which checked all source full paths.
- The recent change to support computing a link language without
finding all the source files skipped the implicit check.
- This change adds an explicit check to find all source files.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 8ea408e..7991a33 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -260,6 +260,8 @@ protected: virtual bool CheckALLOW_DUPLICATE_CUSTOM_TARGETS(); + bool CheckTargets(); + // Fill the ProjectMap, this must be called after LocalGenerators // has been populated. void FillProjectMap(); |