diff options
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index d461fbd..dfec55c 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -335,9 +335,10 @@ class cmake std::vector<std::string> const& GetDebugConfigs(); void SetCMakeEditCommand(std::string const& s) - { - this->CMakeEditCommand = s; - } + { this->CMakeEditCommand = s; } + std::string const& GetCMakeEditCommand() const + { return this->CMakeEditCommand; } + void SetSuppressDevWarnings(bool v) { this->SuppressDevWarnings = v; |