diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2016-12-27 18:03:14 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-01-10 11:49:14 (GMT) |
commit | d51cc88e844c78c01c1616e6a2fb102c0682dd00 (patch) | |
tree | bef37f17d1d42e53026d15b373974735b5176776 /Source/cmQtAutoGenerators.h | |
parent | cf1d5a9cdba49a2e9f08879d756ae118b22bfc6a (diff) | |
download | CMake-d51cc88e844c78c01c1616e6a2fb102c0682dd00.zip CMake-d51cc88e844c78c01c1616e6a2fb102c0682dd00.tar.gz CMake-d51cc88e844c78c01c1616e6a2fb102c0682dd00.tar.bz2 |
AUTOGEN: Generators: Split config headers/sources into vector
Diffstat (limited to 'Source/cmQtAutoGenerators.h')
-rw-r--r-- | Source/cmQtAutoGenerators.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmQtAutoGenerators.h b/Source/cmQtAutoGenerators.h index c6fe3b6..bffdee2 100644 --- a/Source/cmQtAutoGenerators.h +++ b/Source/cmQtAutoGenerators.h @@ -116,8 +116,8 @@ private: std::string UicExecutable; std::string RccExecutable; // - File lists - std::string Sources; - std::string Headers; + std::vector<std::string> Sources; + std::vector<std::string> Headers; // - Moc std::string SkipMoc; std::string MocCompileDefinitionsStr; |