diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-06-20 20:25:02 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-06-20 20:25:02 (GMT) |
commit | 08b95e9cd89c4b44f58f46394792c4a974896ddf (patch) | |
tree | b75ff3b6aff6b7d8cf40838b7c1f0034758dfeea /Source/cmake.h | |
parent | 85b8534aead8d2c10a70f1e28ba8020e120616fd (diff) | |
download | CMake-08b95e9cd89c4b44f58f46394792c4a974896ddf.zip CMake-08b95e9cd89c4b44f58f46394792c4a974896ddf.tar.gz CMake-08b95e9cd89c4b44f58f46394792c4a974896ddf.tar.bz2 |
BUG: fix for bug 7222 manifest:no not working for makefiles
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 8dd5ad1..1c4351a 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -416,6 +416,7 @@ protected: bool verbose); static int VisualStudioLinkNonIncremental(std::vector<std::string>& args, int type, + bool hasManifest, bool verbose); static int ParseVisualStudioLinkCommand(std::vector<std::string>& args, std::vector<cmStdString>& command, @@ -428,7 +429,9 @@ protected: ///! Find the full path to one of the cmake programs like ctest, cpack, etc. std::string FindCMakeProgram(const char* name) const; -private: +private: + cmake(const cmake&); // Not implemented. + void operator=(const cmake&); // Not implemented. ProgressCallbackType ProgressCallback; void* ProgressCallbackClientData; bool Verbose; |