diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-24 22:35:35 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-24 22:35:35 (GMT) |
commit | c4156b4531668adc0dc9bf37f42758d6db03ff68 (patch) | |
tree | 37762d0fda6dadd103b9b4dc2f08facd77cffc35 /Source/cmGlobalVisualStudio7Generator.h | |
parent | 46757656011165aa8c857523c8770cd0ea80c3da (diff) | |
download | CMake-c4156b4531668adc0dc9bf37f42758d6db03ff68.zip CMake-c4156b4531668adc0dc9bf37f42758d6db03ff68.tar.gz CMake-c4156b4531668adc0dc9bf37f42758d6db03ff68.tar.bz2 |
COMP: Even more global target fixes
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.h b/Source/cmGlobalVisualStudio7Generator.h index 7ef7d32..cff22f4 100644 --- a/Source/cmGlobalVisualStudio7Generator.h +++ b/Source/cmGlobalVisualStudio7Generator.h @@ -84,6 +84,9 @@ public: /** Append the subdirectory for the given configuration. */ virtual void AppendDirectoryForConfig(const char* config, std::string& dir); + ///! What is the configurations directory variable called? + virtual const char* GetCMakeCFGInitDirectory() { return "$(OutDir)"; } + protected: virtual void OutputSLNFile(cmLocalGenerator* root, std::vector<cmLocalGenerator*>& generators); @@ -103,6 +106,7 @@ protected: const char* name, const char* path, const std::vector<std::string>& dependencies); + std::vector<std::string> m_Configurations; std::map<cmStdString, cmStdString> m_GUIDMap; |