* Added new Source Group type SourceGroupCustomCommand to UI and ProjectSettings * The Source Group executes a specified command on every source file * The variables $SOURCE_PATH, $PROJECT_PATH, $DB_PATH, $STORAGE_VERSION can be passed * The commands are executed after all other source groups finished indexing * The command is executed with working directory set to project directory * Errors during command execution are shown as status update and in the Status View * SourceGroupCustomCommand cannot be partially cleared, when one file needs clearing the project must be fully re-indexed
34 lines
1.2 KiB
C++
34 lines
1.2 KiB
C++
#ifndef SOURCE_GROUP_SETTINGS_C_EMPTY_H
|
|
#define SOURCE_GROUP_SETTINGS_C_EMPTY_H
|
|
|
|
#include "SourceGroupSettingsCxx.h"
|
|
#include "SourceGroupSettingsWithCStandard.h"
|
|
#include "SourceGroupSettingsWithCxxCrossCompilationOptions.h"
|
|
#include "SourceGroupSettingsWithExcludeFilters.h"
|
|
#include "SourceGroupSettingsWithSourceExtensions.h"
|
|
#include "SourceGroupSettingsWithSourcePaths.h"
|
|
|
|
class SourceGroupSettingsCEmpty
|
|
: public SourceGroupSettingsCxx
|
|
, public SourceGroupSettingsWithCStandard
|
|
, public SourceGroupSettingsWithCxxCrossCompilationOptions
|
|
, public SourceGroupSettingsWithExcludeFilters
|
|
, public SourceGroupSettingsWithSourceExtensions
|
|
, public SourceGroupSettingsWithSourcePaths
|
|
{
|
|
public:
|
|
SourceGroupSettingsCEmpty(const std::string& id, const ProjectSettings* projectSettings);
|
|
|
|
std::shared_ptr<SourceGroupSettings> createCopy() const override;
|
|
|
|
void load(std::shared_ptr<const ConfigManager> config) override;
|
|
void save(std::shared_ptr<ConfigManager> config) override;
|
|
|
|
bool equals(std::shared_ptr<SourceGroupSettings> other) const override;
|
|
|
|
private:
|
|
std::vector<std::wstring> getDefaultSourceExtensions() const override;
|
|
};
|
|
|
|
#endif // SOURCE_GROUP_SETTINGS_C_EMPTY_H
|