You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
431 B

11 years ago
#include "CompilationDatabase.h"
#include <exception>
11 years ago
clang::CompilationDatabase::
CompilationDatabase(const std::string &project_path) {
CXCompilationDatabase_Error error;
db_ = clang_CompilationDatabase_fromDirectory(project_path.c_str(), &error);
if(error) {
//TODO: compile_commands.json is missing, create it?
11 years ago
}
}
clang::CompilationDatabase::
~CompilationDatabase() {
clang_CompilationDatabase_dispose(db_);
}