diff options
author | Daniel Gehriger <dgehriger@globusmedical.com> | 2022-04-25 10:17:53 (GMT) |
---|---|---|
committer | Daniel Gehriger <dgehriger@globusmedical.com> | 2022-04-26 18:43:00 (GMT) |
commit | 1c9cead051be019bcaa46f15d3587ca23214805b (patch) | |
tree | 33ba7bd2a7197e8a6c278b135102518e8ce19b2f /Source/cmQtAutoGen.h | |
parent | f109faf450f04fe045e2b5328092684038dd68e1 (diff) | |
download | CMake-1c9cead051be019bcaa46f15d3587ca23214805b.zip CMake-1c9cead051be019bcaa46f15d3587ca23214805b.tar.gz CMake-1c9cead051be019bcaa46f15d3587ca23214805b.tar.bz2 |
AUTOMOC: Automatically use options file for moc compiler
Diffstat (limited to 'Source/cmQtAutoGen.h')
-rw-r--r-- | Source/cmQtAutoGen.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmQtAutoGen.h b/Source/cmQtAutoGen.h index 5a23ae9..d111422 100644 --- a/Source/cmQtAutoGen.h +++ b/Source/cmQtAutoGen.h @@ -64,6 +64,11 @@ public: /// @brief Maximum number of parallel threads/processes in a generator static unsigned int const ParallelMax; +#ifdef _WIN32 + /// @brief Maximum number of characters on command line + static size_t const CommandLineLengthMax; +#endif + /// @brief Returns the generator name static cm::string_view GeneratorName(GenT genType); /// @brief Returns the generator name in upper case |