diff options
author | Brad King <brad.king@kitware.com> | 2019-01-18 16:08:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-18 17:29:53 (GMT) |
commit | 8144b00e32cf1e24daf41353cbcd1806311ceac9 (patch) | |
tree | 9dab608492a1c0faa7f5381524ffcd7d2c88334d /Source/cmake.h | |
parent | b70c0aed5c616edce5cbc803c7de92580f835f90 (diff) | |
download | CMake-8144b00e32cf1e24daf41353cbcd1806311ceac9.zip CMake-8144b00e32cf1e24daf41353cbcd1806311ceac9.tar.gz CMake-8144b00e32cf1e24daf41353cbcd1806311ceac9.tar.bz2 |
Split global generator factory list with and without platforms
Replace `cmGlobalGeneratorFactory::GetGenerators` with a pair of methods
to split the list of generator names into those that have platforms in
the name and those that do not.
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index cd8c622..b37cccd 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -196,7 +196,8 @@ public: void SetGlobalGenerator(cmGlobalGenerator*); ///! Get the names of the current registered generators - void GetRegisteredGenerators(std::vector<GeneratorInfo>& generators) const; + void GetRegisteredGenerators(std::vector<GeneratorInfo>& generators, + bool includeNamesWithPlatform = true) const; ///! Set the name of the selected generator-specific instance. void SetGeneratorInstance(std::string const& instance) |