mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
15 lines
278 B
C++
15 lines
278 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <binlog/adapt_struct.hpp>
|
|
|
|
struct XcodeTarget {
|
|
std::string workspace;
|
|
std::string project;
|
|
std::string name;
|
|
std::string type;
|
|
size_t fileCount;
|
|
};
|
|
|
|
BINLOG_ADAPT_STRUCT(XcodeTarget, workspace, project, name, type, fileCount);
|