mirror of
https://github.com/github/codeql.git
synced 2026-01-10 05:00:29 +01:00
20 lines
515 B
C++
20 lines
515 B
C++
#pragma once
|
|
|
|
#include "swift/xcode-autobuilder/XcodeTarget.h"
|
|
#include <vector>
|
|
#include <string>
|
|
#include <filesystem>
|
|
|
|
struct ProjectStructure {
|
|
std::vector<XcodeTarget> xcodeTargets;
|
|
bool xcodeEncountered;
|
|
// Swift Package Manager support
|
|
std::vector<std::filesystem::path> swiftPackages;
|
|
// CocoaPods support
|
|
std::vector<std::filesystem::path> podfiles;
|
|
// Carthage support
|
|
std::vector<std::filesystem::path> cartfiles;
|
|
};
|
|
|
|
ProjectStructure scanProjectStructure(const std::string& workingDir);
|