mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
16 lines
424 B
C++
16 lines
424 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace codeql {
|
|
struct SwiftExtractorConfiguration {
|
|
// The location for storing TRAP files to be imported by CodeQL engine.
|
|
std::string trapDir;
|
|
// The location for storing extracted source files.
|
|
std::string sourceArchiveDir;
|
|
// The arguments passed to the extractor. Used for debugging.
|
|
std::vector<std::string> frontendOptions;
|
|
};
|
|
} // namespace codeql
|