diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2021-09-02 15:52:37 (GMT) |
---|---|---|
committer | Marc Chevrier <marc.chevrier@gmail.com> | 2021-09-10 13:45:51 (GMT) |
commit | 3c2e58eeb884adea8ee12462f7d471ab518a673f (patch) | |
tree | f8adf34b01f5364785d855a296f4f64686ef6cfb /Source/cmake.cxx | |
parent | c8991f17cf5bb07fc1b0d7fa68e9613fa8617900 (diff) | |
download | CMake-3c2e58eeb884adea8ee12462f7d471ab518a673f.zip CMake-3c2e58eeb884adea8ee12462f7d471ab518a673f.tar.gz CMake-3c2e58eeb884adea8ee12462f7d471ab518a673f.tar.bz2 |
AddCacheEntry accept cmProp or std::string
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index beb5d16..62ee380 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -2416,7 +2416,7 @@ int cmake::Generate() return 0; } -void cmake::AddCacheEntry(const std::string& key, const char* value, +void cmake::AddCacheEntry(const std::string& key, cmProp value, const char* helpString, int type) { this->State->AddCacheEntry(key, value, helpString, |