mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-25 17:11:59 +00:00
12 lines
267 B
C
12 lines
267 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
struct CompilationEntry {
|
||
|
std::string directory;
|
||
|
std::string filename;
|
||
|
std::vector<std::string> args;
|
||
|
};
|
||
|
|
||
|
std::vector<CompilationEntry> LoadCompilationEntriesFromDirectory(const std::string& project_directory);
|