diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-11-22 23:41:44 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-11-22 23:41:44 (GMT) |
commit | aeff60e44c203dd67b316a6c6eab1454a408e1f7 (patch) | |
tree | 34dbccb2e3606214d78a08a7af8776e38f7995b7 /Tests/CMakeLib | |
parent | a6fe714eaa6e25c2a661c3ec57f7eb8b8dbadede (diff) | |
download | CMake-aeff60e44c203dd67b316a6c6eab1454a408e1f7.zip CMake-aeff60e44c203dd67b316a6c6eab1454a408e1f7.tar.gz CMake-aeff60e44c203dd67b316a6c6eab1454a408e1f7.tar.bz2 |
iwyu: Fix OSX specific issues
Diffstat (limited to 'Tests/CMakeLib')
-rw-r--r-- | Tests/CMakeLib/run_compile_commands.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Tests/CMakeLib/run_compile_commands.cxx b/Tests/CMakeLib/run_compile_commands.cxx index 0bf0a7c..5d4ca70 100644 --- a/Tests/CMakeLib/run_compile_commands.cxx +++ b/Tests/CMakeLib/run_compile_commands.cxx @@ -1,4 +1,4 @@ -#include "cmSystemTools.h" +#include <cmConfigure.h> #include <cmsys/FStream.hxx> #include <iostream> @@ -8,6 +8,8 @@ #include <utility> #include <vector> +#include "cmSystemTools.h" + class CompileCommandParser { public: |