diff options
author | Brad King <brad.king@kitware.com> | 2006-04-04 15:48:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-04-04 15:48:19 (GMT) |
commit | 2301a025ea1ed9a61cf0028f88b32f726162fbf7 (patch) | |
tree | 2e9f8ba74c01e98c9b22c846edc34a06865b6ae8 /Source/cmLocalGenerator.h | |
parent | cddedaa7d85c1a4ccc3502a6ec56f6e6cdea6f90 (diff) | |
download | CMake-2301a025ea1ed9a61cf0028f88b32f726162fbf7.zip CMake-2301a025ea1ed9a61cf0028f88b32f726162fbf7.tar.gz CMake-2301a025ea1ed9a61cf0028f88b32f726162fbf7.tar.bz2 |
ENH: Added global TargetManifest computation between Configure and Generate steps. This allows generators to know what other targets will exist on disk when the build completes.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 9a1df74..a7e0740 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -22,6 +22,7 @@ class cmMakefile; class cmGlobalGenerator; class cmTarget; +class cmTargetManifest; class cmSourceFile; @@ -63,7 +64,11 @@ public: * Generate the test files for tests. */ virtual void GenerateTestFiles(); - + + /** + * Generate a manifest of target files that will be built. + */ + virtual void GenerateTargetManifest(cmTargetManifest&); ///! Get the makefile for this generator cmMakefile *GetMakefile() { |