diff options
author | Brad King <brad.king@kitware.com> | 2007-03-08 13:38:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-03-08 13:38:40 (GMT) |
commit | 2f2b5b25034c5b26bf59dc4dc900c21d448ad30b (patch) | |
tree | bc117b62fd8ee0a30564e8e260373667436192ad /Source/cmLocalGenerator.h | |
parent | 9a5a051f2134f3a5ca2d4d04286770239ef32ca3 (diff) | |
download | CMake-2f2b5b25034c5b26bf59dc4dc900c21d448ad30b.zip CMake-2f2b5b25034c5b26bf59dc4dc900c21d448ad30b.tar.gz CMake-2f2b5b25034c5b26bf59dc4dc900c21d448ad30b.tar.bz2 |
ENH: SetupPathConversions is now called automatically on demand.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index fbeb056..4690da5 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -102,9 +102,6 @@ public: OutputFormat output = UNCHANGED, bool optional = false); - ///! Call this prior to using Convert - void SetupPathConversions(); - /** * Convert the given path to an output path that is optionally * relative based on the cache option CMAKE_USE_RELATIVE_PATHS. The @@ -279,6 +276,7 @@ protected: void ConfigureRelativePaths(); std::string FindRelativePathTopSource(); std::string FindRelativePathTopBinary(); + void SetupPathConversions(); cmMakefile *Makefile; cmGlobalGenerator *GlobalGenerator; @@ -314,6 +312,7 @@ protected: std::string RelativePathTopSource; std::string RelativePathTopBinary; bool RelativePathsConfigured; + bool PathConversionsSetup; }; #endif |