diff --git a/GlitchyEditor/EditorUI/BeefProj.toml b/GlitchyEditor/EditorUI/BeefProj.toml index e1a372a..42d9512 100644 --- a/GlitchyEditor/EditorUI/BeefProj.toml +++ b/GlitchyEditor/EditorUI/BeefProj.toml @@ -2,10 +2,11 @@ FileVersion = 1 [Project] Name = "EditorUI" -TargetType = "CustomBuild" +TargetType = "BeefLib" StartupObject = "EditorUI.Program" [Configs.Debug.Win64] +BuildKind = "StaticLib" BuildCommandsOnCompile = "IfFilesChanged" BuildCommandsOnRun = "IfFilesChanged" PreBuildCmds = ["npm run build"] diff --git a/GlitchyEditor/EditorUI/src/EditorUIPlaceholder.bf b/GlitchyEditor/EditorUI/src/EditorUIPlaceholder.bf new file mode 100644 index 0000000..821504c --- /dev/null +++ b/GlitchyEditor/EditorUI/src/EditorUIPlaceholder.bf @@ -0,0 +1,11 @@ +// +// This file exists so that vite build will only happen, if a file in the src-directory changed +// +using System; + +namespace EditorUI; + +[AlwaysInclude] +struct EditorUIPlaceholder +{ +}