diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-05-10 18:43:55 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-05-10 18:43:55 (GMT) |
commit | 76dd86b410d0b09e33d2a93d0b4a27b4a8ee7016 (patch) | |
tree | 6e81c6636ecb286373ce65b320843b4c8e80b6d3 /Source/cmLocalGenerator.h | |
parent | 0577543cbc8168ffe74bef808a084e339e0929f2 (diff) | |
download | CMake-76dd86b410d0b09e33d2a93d0b4a27b4a8ee7016.zip CMake-76dd86b410d0b09e33d2a93d0b4a27b4a8ee7016.tar.gz CMake-76dd86b410d0b09e33d2a93d0b4a27b4a8ee7016.tar.bz2 |
BUG: fix -D escaped quotes for watcom
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 58a5a11..38b4c0b 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -131,7 +131,7 @@ public: void AddSharedFlags(std::string& flags, const char* lang, bool shared); void AddConfigVariableFlags(std::string& flags, const char* var, const char* config); - void AppendFlags(std::string& flags, const char* newFlags); + virtual void AppendFlags(std::string& flags, const char* newFlags); ///! Get the include flags for the current makefile and language const char* GetIncludeFlags(const char* lang); |