Files
codeql/swift/xcode-autobuilder/XcodeTarget.h
2022-10-17 11:24:20 +02:00

12 lines
160 B
C++

#pragma once
#include <string>
struct Target {
std::string workspace;
std::string project;
std::string name;
std::string type;
size_t fileCount;
};