diff options
author | Brad King <brad.king@kitware.com> | 2012-10-26 14:16:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-10-26 14:16:45 (GMT) |
commit | c65a2ea6a83f274afc52ca6adc457dec069de064 (patch) | |
tree | 88401d4f05fde5264864fab4cfdcaffa2fcb30ea /Source/cmIDEOptions.h | |
parent | 259cff94ff81f7b95b7375905fe0e0a292f70dda (diff) | |
download | CMake-c65a2ea6a83f274afc52ca6adc457dec069de064.zip CMake-c65a2ea6a83f274afc52ca6adc457dec069de064.tar.gz CMake-c65a2ea6a83f274afc52ca6adc457dec069de064.tar.bz2 |
VS10: Refactor link options collection
Avoid collecting the link options twice. Collect them once in a
LinkOptions member and use it from both places. We already do this for
compiler options with the ClOptions member.
Diffstat (limited to 'Source/cmIDEOptions.h')
-rw-r--r-- | Source/cmIDEOptions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmIDEOptions.h b/Source/cmIDEOptions.h index a5be8fb..e556bde 100644 --- a/Source/cmIDEOptions.h +++ b/Source/cmIDEOptions.h @@ -29,6 +29,7 @@ public: void AddDefines(const char* defines); void AddFlag(const char* flag, const char* value); void RemoveFlag(const char* flag); + const char* GetFlag(const char* flag); protected: // create a map of xml tags to the values they should have in the output |