Files
codeql/swift/xcode-autobuilder/XcodeProjectParser.h
2023-05-10 14:31:33 +02:00

14 lines
264 B
C++

#pragma once
#include "swift/xcode-autobuilder/XcodeTarget.h"
#include <vector>
#include <string>
struct Targets {
std::vector<Target> targets;
bool xcodeEncountered;
bool swiftPackageEncountered;
};
Targets collectTargets(const std::string& workingDir);