mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
15 lines
433 B
C++
15 lines
433 B
C++
#include "CompilationDatabase.h"
|
|
#include <exception>
|
|
|
|
clang::CompilationDatabase::CompilationDatabase(const std::string &project_path) {
|
|
CXCompilationDatabase_Error error;
|
|
cx_db = clang_CompilationDatabase_fromDirectory(project_path.c_str(), &error);
|
|
if(error) {
|
|
//TODO: compile_commands.json is missing, create it?
|
|
}
|
|
}
|
|
|
|
clang::CompilationDatabase::~CompilationDatabase() {
|
|
clang_CompilationDatabase_dispose(cx_db);
|
|
}
|