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:
@@ -7,7 +7,6 @@ StartupObject = "GlitchyEngineHelper.Program"
|
|||||||
|
|
||||||
[Dependencies]
|
[Dependencies]
|
||||||
corlib = "*"
|
corlib = "*"
|
||||||
corlib = "*"
|
|
||||||
DirectX = "*"
|
DirectX = "*"
|
||||||
|
|
||||||
[Configs.Debug.Win64]
|
[Configs.Debug.Win64]
|
||||||
|
|||||||
@@ -28,4 +28,24 @@ class GlitchyEngineHelperModule : Module
|
|||||||
|
|
||||||
return true;
|
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