diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2020-07-11 18:00:00 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2020-07-11 18:03:03 (GMT) |
commit | 18726ad634d0f182940d45e9f569000cebcc4377 (patch) | |
tree | 89e7eea76cb7226f58c8a567a24b9ccc7533d0db /Source/cmLocalGenerator.h | |
parent | fd1df4995b6c1e063bb978e034a264b0e2d59f63 (diff) | |
download | CMake-18726ad634d0f182940d45e9f569000cebcc4377.zip CMake-18726ad634d0f182940d45e9f569000cebcc4377.tar.gz CMake-18726ad634d0f182940d45e9f569000cebcc4377.tar.bz2 |
GetFeature(): return cmProp
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index f4781d6..0c51a65 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -20,6 +20,7 @@ #include "cmMessageType.h" #include "cmOutputConverter.h" #include "cmPolicies.h" +#include "cmProperty.h" #include "cmStateSnapshot.h" class cmComputeLinkInformation; @@ -209,8 +210,7 @@ public: void AppendFeatureOptions(std::string& flags, const std::string& lang, const char* feature); - const char* GetFeature(const std::string& feature, - const std::string& config); + cmProp GetFeature(const std::string& feature, const std::string& config); /** \brief Get absolute path to dependency \a name * |