#pragma once #include "swift/swift-autobuilder/XcodeTarget.h" #include #include #include struct ProjectStructure { std::vector xcodeTargets; bool xcodeEncountered; // Swift Package Manager support std::vector swiftPackages; // CocoaPods support std::vector podfiles; // Carthage support std::vector cartfiles; }; ProjectStructure scanProjectStructure(const std::string& workingDir);