mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
Setup WatchedSources for BuildTool Module "GlitchyEngineHelper"
This commit is contained in:
@@ -28,4 +28,24 @@ class GlitchyEngineHelperModule : Module
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
protected override List<WatchedSource> GetWatchedSources(BuildInfo buildInfo)
|
||||
{
|
||||
List<WatchedSource> sources = new();
|
||||
|
||||
// Watch ScriptGlue-Definitions file by content
|
||||
sources.Add(new WatchedSource("GlitchyEngineHelper", WatchMode.Metadata)
|
||||
{
|
||||
Recursive = true,
|
||||
ExcludedSubpaths =
|
||||
[
|
||||
".vs",
|
||||
"out",
|
||||
"src",
|
||||
"BeefProj.toml"
|
||||
]
|
||||
});
|
||||
|
||||
return sources;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user