diff options
author | Brad King <brad.king@kitware.com> | 2016-05-25 13:34:19 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-05-25 13:34:19 (GMT) |
commit | 2bc55b69dbce97abaf6189987af97a25efae4694 (patch) | |
tree | 818c4ffa39d8f100097f8145298611ef1e90a386 /Source/cmLocalGenerator.h | |
parent | d5ccab37b33ff23885e7cd13341cd8c253626e13 (diff) | |
parent | 25d1ef6424e0b06687739c91a646633ab9aaf861 (diff) | |
download | CMake-2bc55b69dbce97abaf6189987af97a25efae4694.zip CMake-2bc55b69dbce97abaf6189987af97a25efae4694.tar.gz CMake-2bc55b69dbce97abaf6189987af97a25efae4694.tar.bz2 |
Merge topic 'output-converter-enums'
25d1ef64 Use enums defined in cmOutputConverter using their fully qualified name.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 892ad4f..5c603a6 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -174,9 +174,10 @@ public: bool GetRealDependency(const std::string& name, const std::string& config, std::string& dep); - virtual std::string ConvertToIncludeReference(std::string const& path, - OutputFormat format = SHELL, - bool forceFullPaths = false); + virtual std::string ConvertToIncludeReference( + std::string const& path, + cmOutputConverter::OutputFormat format = cmOutputConverter::SHELL, + bool forceFullPaths = false); /** Called from command-line hook to clear dependencies. */ virtual void ClearDependencies(cmMakefile* /* mf */, bool /* verbose */) {} @@ -353,8 +354,9 @@ protected: std::string& CreateSafeUniqueObjectFileName(const std::string& sin, std::string const& dir_max); - virtual std::string ConvertToLinkReference(std::string const& lib, - OutputFormat format = SHELL); + virtual std::string ConvertToLinkReference( + std::string const& lib, + cmOutputConverter::OutputFormat format = cmOutputConverter::SHELL); /** Check whether the native build system supports the given definition. Issues a warning. */ |