diff options
author | Brad King <brad.king@kitware.com> | 2016-10-27 15:17:14 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-10-27 15:17:14 (GMT) |
commit | c6c8c24908e108b7b3c5c76e29197323ac3a4287 (patch) | |
tree | 9b4ddf846d9a2bb2edb388a9ce06b71cd02f3b67 /Source/cmTryRunCommand.h | |
parent | 402b133d7b13c691a3d3f3a354bd10eea1ff24f1 (diff) | |
parent | e81c323da9c020c91c967184ecf98f806eb95867 (diff) | |
download | CMake-c6c8c24908e108b7b3c5c76e29197323ac3a4287.zip CMake-c6c8c24908e108b7b3c5c76e29197323ac3a4287.tar.gz CMake-c6c8c24908e108b7b3c5c76e29197323ac3a4287.tar.bz2 |
Merge topic 'include-what-you-use'
e81c323d Include necessary headers in commands
Diffstat (limited to 'Source/cmTryRunCommand.h')
-rw-r--r-- | Source/cmTryRunCommand.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmTryRunCommand.h b/Source/cmTryRunCommand.h index 24447ed..8b44ac5 100644 --- a/Source/cmTryRunCommand.h +++ b/Source/cmTryRunCommand.h @@ -3,8 +3,15 @@ #ifndef cmTryRunCommand_h #define cmTryRunCommand_h +#include <cmConfigure.h> +#include <string> +#include <vector> + #include "cmCoreTryCompile.h" +class cmCommand; +class cmExecutionStatus; + /** \class cmTryRunCommand * \brief Specifies where to install some files * |