diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-10-19 06:54:18 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-10-21 16:14:50 (GMT) |
commit | f69e768d94ff5e0238cbb924836737c4ce11a930 (patch) | |
tree | 88d4d5f0725b81517779456a6a2c9dd9136a5297 /Source/cmCMakeHostSystemInformationCommand.h | |
parent | 1e555a44aa4e3d40bca2f88915c9f957098e5a55 (diff) | |
download | CMake-f69e768d94ff5e0238cbb924836737c4ce11a930.zip CMake-f69e768d94ff5e0238cbb924836737c4ce11a930.tar.gz CMake-f69e768d94ff5e0238cbb924836737c4ce11a930.tar.bz2 |
Separate compilation for commands included in cmCommands
Diffstat (limited to 'Source/cmCMakeHostSystemInformationCommand.h')
-rw-r--r-- | Source/cmCMakeHostSystemInformationCommand.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Source/cmCMakeHostSystemInformationCommand.h b/Source/cmCMakeHostSystemInformationCommand.h index 4ab6aa1..585d7fa 100644 --- a/Source/cmCMakeHostSystemInformationCommand.h +++ b/Source/cmCMakeHostSystemInformationCommand.h @@ -3,9 +3,18 @@ #ifndef cmCMakeHostSystemInformationCommand_h #define cmCMakeHostSystemInformationCommand_h +#include <cmConfigure.h> +#include <stddef.h> +#include <string> +#include <vector> + #include "cmCommand.h" +#include "cmTypeMacro.h" -#include <cmsys/SystemInformation.hxx> +class cmExecutionStatus; +namespace cmsys { +class SystemInformation; +} // namespace cmsys /** \class cmCMakeHostSystemInformationCommand * \brief Query host system specific information |