mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
14 lines
264 B
C++
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);
|