* removed trial target * updated deploy scripts to exclude trial * cleanup CMakeLists * removed Eigen dependencies * split parser lib into lib_cxx and lib_java * added ProjectFactory and ProjectFactoryModules * removed old installer projects * updated wix installer * updated readme for wix setup * updated to use obfuscated exe * added qt.conf * added indexing dialog images * added jars * added coatidb files of sample projects * added source code of javaparser sample * removed auto-refresh image * intermediate files of windows installer are created in build folder * preselected desktop shortcut * build bat is executed from deploy_windows script
21 lines
675 B
C++
21 lines
675 B
C++
#ifndef CXX_COMPILATION_DATABASE_SINGLE_H
|
|
#define CXX_COMPILATION_DATABASE_SINGLE_H
|
|
|
|
#include "clang/Tooling/CompilationDatabase.h"
|
|
|
|
class CxxCompilationDatabaseSingle
|
|
: public clang::tooling::CompilationDatabase
|
|
{
|
|
public:
|
|
CxxCompilationDatabaseSingle(const clang::tooling::CompileCommand& command);
|
|
|
|
virtual std::vector<clang::tooling::CompileCommand> getCompileCommands(llvm::StringRef FilePath) const override;
|
|
virtual std::vector<std::string> getAllFiles() const override;
|
|
virtual std::vector<clang::tooling::CompileCommand> getAllCompileCommands() const override;
|
|
|
|
private:
|
|
clang::tooling::CompileCommand m_command;
|
|
};
|
|
|
|
#endif // CXX_COMPILATION_DATABASE_SINGLE_H
|