mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-06 23:29:31 -06:00
iwyu: Fix OSX specific issues
This commit is contained in:
@@ -3,8 +3,10 @@
|
|||||||
#include <cmsys/FStream.hxx>
|
#include <cmsys/FStream.hxx>
|
||||||
#include <cmsys/Process.h>
|
#include <cmsys/Process.h>
|
||||||
#include <cmsys/SystemTools.hxx>
|
#include <cmsys/SystemTools.hxx>
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include <CoreFoundation/CoreFoundation.h>
|
#include <CoreFoundation/CoreFoundation.h>
|
||||||
|
|
||||||
|
|||||||
@@ -2,11 +2,12 @@
|
|||||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||||
#include "cmCPackBundleGenerator.h"
|
#include "cmCPackBundleGenerator.h"
|
||||||
|
|
||||||
|
#include <sstream>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "cmCPackLog.h"
|
#include "cmCPackLog.h"
|
||||||
#include "cmSystemTools.h"
|
#include "cmSystemTools.h"
|
||||||
|
|
||||||
#include <cmsys/RegularExpression.hxx>
|
|
||||||
|
|
||||||
cmCPackBundleGenerator::cmCPackBundleGenerator()
|
cmCPackBundleGenerator::cmCPackBundleGenerator()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,11 @@
|
|||||||
#ifndef cmCPackBundleGenerator_h
|
#ifndef cmCPackBundleGenerator_h
|
||||||
#define cmCPackBundleGenerator_h
|
#define cmCPackBundleGenerator_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#include "cmCPackDragNDropGenerator.h"
|
#include "cmCPackDragNDropGenerator.h"
|
||||||
|
#include "cmCPackGenerator.h"
|
||||||
|
|
||||||
/** \class cmCPackBundleGenerator
|
/** \class cmCPackBundleGenerator
|
||||||
* \brief A generator for OSX bundles
|
* \brief A generator for OSX bundles
|
||||||
|
|||||||
@@ -2,14 +2,16 @@
|
|||||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||||
#include "cmCPackDragNDropGenerator.h"
|
#include "cmCPackDragNDropGenerator.h"
|
||||||
|
|
||||||
|
#include "cmCPackGenerator.h"
|
||||||
#include "cmCPackLog.h"
|
#include "cmCPackLog.h"
|
||||||
#include "cmGeneratedFileStream.h"
|
#include "cmGeneratedFileStream.h"
|
||||||
#include "cmSystemTools.h"
|
#include "cmSystemTools.h"
|
||||||
|
|
||||||
#include <cmsys/FStream.hxx>
|
#include <cmsys/FStream.hxx>
|
||||||
#include <cmsys/RegularExpression.hxx>
|
#include <cmsys/RegularExpression.hxx>
|
||||||
|
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
#include <map>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include <CoreFoundation/CoreFoundation.h>
|
#include <CoreFoundation/CoreFoundation.h>
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,12 @@
|
|||||||
#ifndef cmCPackDragNDropGenerator_h
|
#ifndef cmCPackDragNDropGenerator_h
|
||||||
#define cmCPackDragNDropGenerator_h
|
#define cmCPackDragNDropGenerator_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h>
|
||||||
|
#include <sstream>
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "cmCPackGenerator.h"
|
#include "cmCPackGenerator.h"
|
||||||
|
|
||||||
class cmGeneratedFileStream;
|
class cmGeneratedFileStream;
|
||||||
|
|||||||
@@ -2,16 +2,13 @@
|
|||||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||||
#include "cmCPackOSXX11Generator.h"
|
#include "cmCPackOSXX11Generator.h"
|
||||||
|
|
||||||
|
#include <sstream>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
|
#include "cmCPackGenerator.h"
|
||||||
#include "cmCPackLog.h"
|
#include "cmCPackLog.h"
|
||||||
#include "cmGeneratedFileStream.h"
|
#include "cmGeneratedFileStream.h"
|
||||||
#include "cmGlobalGenerator.h"
|
|
||||||
#include "cmMakefile.h"
|
|
||||||
#include "cmSystemTools.h"
|
#include "cmSystemTools.h"
|
||||||
#include "cmake.h"
|
|
||||||
|
|
||||||
#include <cmsys/Glob.hxx>
|
|
||||||
#include <cmsys/SystemTools.hxx>
|
|
||||||
#include <sys/stat.h>
|
|
||||||
|
|
||||||
cmCPackOSXX11Generator::cmCPackOSXX11Generator()
|
cmCPackOSXX11Generator::cmCPackOSXX11Generator()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,6 +3,9 @@
|
|||||||
#ifndef cmCPackOSXX11Generator_h
|
#ifndef cmCPackOSXX11Generator_h
|
||||||
#define cmCPackOSXX11Generator_h
|
#define cmCPackOSXX11Generator_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#include "cmCPackGenerator.h"
|
#include "cmCPackGenerator.h"
|
||||||
|
|
||||||
/** \class cmCPackOSXX11Generator
|
/** \class cmCPackOSXX11Generator
|
||||||
|
|||||||
@@ -2,18 +2,13 @@
|
|||||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||||
#include "cmCPackPKGGenerator.h"
|
#include "cmCPackPKGGenerator.h"
|
||||||
|
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "cmCPackComponentGroup.h"
|
#include "cmCPackComponentGroup.h"
|
||||||
|
#include "cmCPackGenerator.h"
|
||||||
#include "cmCPackLog.h"
|
#include "cmCPackLog.h"
|
||||||
#include "cmGeneratedFileStream.h"
|
|
||||||
#include "cmGlobalGenerator.h"
|
|
||||||
#include "cmLocalGenerator.h"
|
|
||||||
#include "cmMakefile.h"
|
|
||||||
#include "cmSystemTools.h"
|
#include "cmSystemTools.h"
|
||||||
#include "cmXMLWriter.h"
|
#include "cmXMLWriter.h"
|
||||||
#include "cmake.h"
|
|
||||||
|
|
||||||
#include <cmsys/Glob.hxx>
|
|
||||||
#include <cmsys/SystemTools.hxx>
|
|
||||||
|
|
||||||
cmCPackPKGGenerator::cmCPackPKGGenerator()
|
cmCPackPKGGenerator::cmCPackPKGGenerator()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,10 +5,12 @@
|
|||||||
|
|
||||||
#include <cmConfigure.h>
|
#include <cmConfigure.h>
|
||||||
#include <set>
|
#include <set>
|
||||||
|
#include <sstream>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
#include "cmCPackComponentGroup.h"
|
||||||
#include "cmCPackGenerator.h"
|
#include "cmCPackGenerator.h"
|
||||||
|
|
||||||
class cmCPackComponent;
|
|
||||||
class cmXMLWriter;
|
class cmXMLWriter;
|
||||||
|
|
||||||
/** \class cmCPackPKGGenerator
|
/** \class cmCPackPKGGenerator
|
||||||
|
|||||||
@@ -2,20 +2,20 @@
|
|||||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||||
#include "cmCPackPackageMakerGenerator.h"
|
#include "cmCPackPackageMakerGenerator.h"
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
#include <cmsys/FStream.hxx>
|
||||||
|
#include <cmsys/RegularExpression.hxx>
|
||||||
|
#include <map>
|
||||||
|
#include <sstream>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#include "cmCPackComponentGroup.h"
|
#include "cmCPackComponentGroup.h"
|
||||||
#include "cmCPackLog.h"
|
#include "cmCPackLog.h"
|
||||||
#include "cmGeneratedFileStream.h"
|
#include "cmGeneratedFileStream.h"
|
||||||
#include "cmGlobalGenerator.h"
|
|
||||||
#include "cmMakefile.h"
|
|
||||||
#include "cmSystemTools.h"
|
#include "cmSystemTools.h"
|
||||||
#include "cmXMLWriter.h"
|
#include "cmXMLWriter.h"
|
||||||
#include "cmake.h"
|
|
||||||
|
|
||||||
#include <cmsys/FStream.hxx>
|
|
||||||
#include <cmsys/Glob.hxx>
|
|
||||||
#include <cmsys/SystemTools.hxx>
|
|
||||||
|
|
||||||
#include <assert.h>
|
|
||||||
|
|
||||||
static inline unsigned int getVersion(unsigned int major, unsigned int minor)
|
static inline unsigned int getVersion(unsigned int major, unsigned int minor)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,6 +3,9 @@
|
|||||||
#ifndef cmCPackPackageMakerGenerator_h
|
#ifndef cmCPackPackageMakerGenerator_h
|
||||||
#define cmCPackPackageMakerGenerator_h
|
#define cmCPackPackageMakerGenerator_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h>
|
||||||
|
|
||||||
|
#include "cmCPackGenerator.h"
|
||||||
#include "cmCPackPKGGenerator.h"
|
#include "cmCPackPKGGenerator.h"
|
||||||
|
|
||||||
class cmCPackComponent;
|
class cmCPackComponent;
|
||||||
|
|||||||
@@ -2,17 +2,14 @@
|
|||||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||||
#include "cmCPackProductBuildGenerator.h"
|
#include "cmCPackProductBuildGenerator.h"
|
||||||
|
|
||||||
|
#include <map>
|
||||||
|
#include <sstream>
|
||||||
|
#include <stddef.h>
|
||||||
|
|
||||||
#include "cmCPackComponentGroup.h"
|
#include "cmCPackComponentGroup.h"
|
||||||
#include "cmCPackLog.h"
|
#include "cmCPackLog.h"
|
||||||
#include "cmGeneratedFileStream.h"
|
#include "cmGeneratedFileStream.h"
|
||||||
#include "cmGlobalGenerator.h"
|
|
||||||
#include "cmLocalGenerator.h"
|
|
||||||
#include "cmMakefile.h"
|
|
||||||
#include "cmSystemTools.h"
|
#include "cmSystemTools.h"
|
||||||
#include "cmake.h"
|
|
||||||
|
|
||||||
#include <cmsys/Glob.hxx>
|
|
||||||
#include <cmsys/SystemTools.hxx>
|
|
||||||
|
|
||||||
cmCPackProductBuildGenerator::cmCPackProductBuildGenerator()
|
cmCPackProductBuildGenerator::cmCPackProductBuildGenerator()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,6 +3,10 @@
|
|||||||
#ifndef cmCPackProductBuildGenerator_h
|
#ifndef cmCPackProductBuildGenerator_h
|
||||||
#define cmCPackProductBuildGenerator_h
|
#define cmCPackProductBuildGenerator_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
#include "cmCPackGenerator.h"
|
||||||
#include "cmCPackPKGGenerator.h"
|
#include "cmCPackPKGGenerator.h"
|
||||||
|
|
||||||
class cmCPackComponent;
|
class cmCPackComponent;
|
||||||
|
|||||||
@@ -2,20 +2,35 @@
|
|||||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||||
#include "cmGlobalXCodeGenerator.h"
|
#include "cmGlobalXCodeGenerator.h"
|
||||||
|
|
||||||
#include "cmAlgorithms.h"
|
#include <assert.h>
|
||||||
|
#include <cmsys/RegularExpression.hxx>
|
||||||
|
#include <iomanip>
|
||||||
|
#include <sstream>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#include "cmComputeLinkInformation.h"
|
#include "cmComputeLinkInformation.h"
|
||||||
#include "cmCustomCommandGenerator.h"
|
#include "cmCustomCommandGenerator.h"
|
||||||
|
#include "cmDocumentationEntry.h"
|
||||||
#include "cmGeneratedFileStream.h"
|
#include "cmGeneratedFileStream.h"
|
||||||
|
#include "cmGeneratorExpression.h"
|
||||||
#include "cmGeneratorTarget.h"
|
#include "cmGeneratorTarget.h"
|
||||||
#include "cmGlobalGeneratorFactory.h"
|
#include "cmGlobalGeneratorFactory.h"
|
||||||
|
#include "cmLocalGenerator.h"
|
||||||
#include "cmLocalXCodeGenerator.h"
|
#include "cmLocalXCodeGenerator.h"
|
||||||
#include "cmMakefile.h"
|
#include "cmMakefile.h"
|
||||||
|
#include "cmOutputConverter.h"
|
||||||
#include "cmSourceFile.h"
|
#include "cmSourceFile.h"
|
||||||
|
#include "cmSourceGroup.h"
|
||||||
|
#include "cmStateTypes.h"
|
||||||
|
#include "cmSystemTools.h"
|
||||||
|
#include "cmTarget.h"
|
||||||
#include "cmXCode21Object.h"
|
#include "cmXCode21Object.h"
|
||||||
#include "cmXCodeObject.h"
|
#include "cmXCodeObject.h"
|
||||||
|
#include "cm_auto_ptr.hxx"
|
||||||
#include "cmake.h"
|
#include "cmake.h"
|
||||||
|
|
||||||
#include <cm_auto_ptr.hxx>
|
struct cmLinkImplementation;
|
||||||
|
|
||||||
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
||||||
#include "cmXMLParser.h"
|
#include "cmXMLParser.h"
|
||||||
|
|||||||
@@ -3,13 +3,25 @@
|
|||||||
#ifndef cmGlobalXCodeGenerator_h
|
#ifndef cmGlobalXCodeGenerator_h
|
||||||
#define cmGlobalXCodeGenerator_h
|
#define cmGlobalXCodeGenerator_h
|
||||||
|
|
||||||
#include "cmGlobalGenerator.h"
|
#include <cmConfigure.h>
|
||||||
|
#include <iosfwd>
|
||||||
|
#include <map>
|
||||||
|
#include <set>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "cmCustomCommand.h"
|
#include "cmGlobalGenerator.h"
|
||||||
#include "cmXCodeObject.h"
|
#include "cmXCodeObject.h"
|
||||||
|
|
||||||
|
class cmCustomCommand;
|
||||||
|
class cmGeneratorTarget;
|
||||||
class cmGlobalGeneratorFactory;
|
class cmGlobalGeneratorFactory;
|
||||||
|
class cmLocalGenerator;
|
||||||
|
class cmMakefile;
|
||||||
class cmSourceFile;
|
class cmSourceFile;
|
||||||
class cmSourceGroup;
|
class cmSourceGroup;
|
||||||
|
class cmake;
|
||||||
|
struct cmDocumentationEntry;
|
||||||
|
|
||||||
/** \class cmGlobalXCodeGenerator
|
/** \class cmGlobalXCodeGenerator
|
||||||
* \brief Write a Unix makefiles.
|
* \brief Write a Unix makefiles.
|
||||||
|
|||||||
@@ -4,9 +4,12 @@
|
|||||||
|
|
||||||
#include "cmGeneratorTarget.h"
|
#include "cmGeneratorTarget.h"
|
||||||
#include "cmGlobalXCodeGenerator.h"
|
#include "cmGlobalXCodeGenerator.h"
|
||||||
#include "cmMakefile.h"
|
|
||||||
#include "cmSourceFile.h"
|
#include "cmSourceFile.h"
|
||||||
|
|
||||||
|
class cmGeneratorTarget;
|
||||||
|
class cmGlobalGenerator;
|
||||||
|
class cmMakefile;
|
||||||
|
|
||||||
cmLocalXCodeGenerator::cmLocalXCodeGenerator(cmGlobalGenerator* gg,
|
cmLocalXCodeGenerator::cmLocalXCodeGenerator(cmGlobalGenerator* gg,
|
||||||
cmMakefile* mf)
|
cmMakefile* mf)
|
||||||
: cmLocalGenerator(gg, mf)
|
: cmLocalGenerator(gg, mf)
|
||||||
|
|||||||
@@ -3,8 +3,17 @@
|
|||||||
#ifndef cmLocalXCodeGenerator_h
|
#ifndef cmLocalXCodeGenerator_h
|
||||||
#define cmLocalXCodeGenerator_h
|
#define cmLocalXCodeGenerator_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h> // IWYU pragma: keep
|
||||||
|
#include <map>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#include "cmLocalGenerator.h"
|
#include "cmLocalGenerator.h"
|
||||||
|
|
||||||
|
class cmGeneratorTarget;
|
||||||
|
class cmGlobalGenerator;
|
||||||
|
class cmMakefile;
|
||||||
|
class cmSourceFile;
|
||||||
|
|
||||||
/** \class cmLocalXCodeGenerator
|
/** \class cmLocalXCodeGenerator
|
||||||
* \brief Write a local Xcode project
|
* \brief Write a local Xcode project
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||||
#include "cmStandardIncludes.h" // to get CMAKE_USE_MACH_PARSER first
|
|
||||||
|
|
||||||
#include "cmMachO.h"
|
#include "cmMachO.h"
|
||||||
|
|
||||||
|
#include <algorithm>
|
||||||
#include <cmsys/FStream.hxx>
|
#include <cmsys/FStream.hxx>
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
// Include the Mach-O format information system header.
|
// Include the Mach-O format information system header.
|
||||||
#include <mach-o/fat.h>
|
#include <mach-o/fat.h>
|
||||||
|
|||||||
@@ -3,6 +3,11 @@
|
|||||||
#ifndef cmMachO_h
|
#ifndef cmMachO_h
|
||||||
#define cmMachO_h
|
#define cmMachO_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h>
|
||||||
|
|
||||||
|
#include <iosfwd>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#if !defined(CMAKE_USE_MACH_PARSER)
|
#if !defined(CMAKE_USE_MACH_PARSER)
|
||||||
#error "This file may be included only if CMAKE_USE_MACH_PARSER is enabled."
|
#error "This file may be included only if CMAKE_USE_MACH_PARSER is enabled."
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -2,6 +2,9 @@
|
|||||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||||
#include "cmXCode21Object.h"
|
#include "cmXCode21Object.h"
|
||||||
|
|
||||||
|
#include <ostream>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#include "cmSystemTools.h"
|
#include "cmSystemTools.h"
|
||||||
|
|
||||||
cmXCode21Object::cmXCode21Object(PBXType ptype, Type type)
|
cmXCode21Object::cmXCode21Object(PBXType ptype, Type type)
|
||||||
|
|||||||
@@ -3,6 +3,11 @@
|
|||||||
#ifndef cmXCode21Object_h
|
#ifndef cmXCode21Object_h
|
||||||
#define cmXCode21Object_h
|
#define cmXCode21Object_h
|
||||||
|
|
||||||
|
#include <cmConfigure.h> // IWYU pragma: keep
|
||||||
|
|
||||||
|
#include <iosfwd>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "cmXCodeObject.h"
|
#include "cmXCodeObject.h"
|
||||||
|
|
||||||
class cmXCode21Object : public cmXCodeObject
|
class cmXCode21Object : public cmXCodeObject
|
||||||
|
|||||||
@@ -2,9 +2,10 @@
|
|||||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||||
#include "cmXCodeObject.h"
|
#include "cmXCodeObject.h"
|
||||||
|
|
||||||
#include "cmSystemTools.h"
|
#include <CoreFoundation/CoreFoundation.h>
|
||||||
|
#include <ostream>
|
||||||
|
|
||||||
#include <CoreFoundation/CoreFoundation.h> // CFUUIDCreate
|
#include "cmSystemTools.h"
|
||||||
|
|
||||||
const char* cmXCodeObject::PBXTypeNames[] = {
|
const char* cmXCodeObject::PBXTypeNames[] = {
|
||||||
/* clang-format needs this comment to break after the opening brace */
|
/* clang-format needs this comment to break after the opening brace */
|
||||||
|
|||||||
@@ -3,9 +3,14 @@
|
|||||||
#ifndef cmXCodeObject_h
|
#ifndef cmXCodeObject_h
|
||||||
#define cmXCodeObject_h
|
#define cmXCodeObject_h
|
||||||
|
|
||||||
#include <cmConfigure.h>
|
#include <cmConfigure.h> // IWYU pragma: keep
|
||||||
|
|
||||||
#include "cmStandardIncludes.h"
|
#include <algorithm>
|
||||||
|
#include <iosfwd>
|
||||||
|
#include <map>
|
||||||
|
#include <string>
|
||||||
|
#include <utility>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
class cmGeneratorTarget;
|
class cmGeneratorTarget;
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,14 @@
|
|||||||
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||||
#include "cmStandardIncludes.h"
|
|
||||||
|
#include <cmConfigure.h> // IWYU pragma: keep
|
||||||
|
|
||||||
|
#include <cmsys/Process.h>
|
||||||
|
#include <iostream>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "cmSystemTools.h"
|
#include "cmSystemTools.h"
|
||||||
#include <cmsys/Process.h>
|
|
||||||
|
|
||||||
// This is a wrapper program for xcodebuild
|
// This is a wrapper program for xcodebuild
|
||||||
// it calls xcodebuild, and does two things
|
// it calls xcodebuild, and does two things
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#include "cmSystemTools.h"
|
#include <cmConfigure.h>
|
||||||
|
|
||||||
#include <cmsys/FStream.hxx>
|
#include <cmsys/FStream.hxx>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
@@ -8,6 +8,8 @@
|
|||||||
#include <utility>
|
#include <utility>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
#include "cmSystemTools.h"
|
||||||
|
|
||||||
class CompileCommandParser
|
class CompileCommandParser
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|||||||
Reference in New Issue
Block a user