mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-13 05:44:11 +02:00
Support for comptime file IO and process creation
This commit is contained in:
parent
045e706600
commit
ce4b6e04de
19 changed files with 726 additions and 89 deletions
|
@ -9167,6 +9167,13 @@ namespace IDE
|
|||
bool doCompile = false;
|
||||
if (lastCompileHadMessages)
|
||||
doCompile = true;
|
||||
|
||||
bool needsComptime = true;
|
||||
for (var project in mWorkspace.mProjects)
|
||||
{
|
||||
//Set needsComptime
|
||||
}
|
||||
|
||||
if ((!workspaceOptions.mIncrementalBuild) && (!lastCompileHadMessages))
|
||||
{
|
||||
tryQueueFiles = false;
|
||||
|
@ -9177,6 +9184,9 @@ namespace IDE
|
|||
}
|
||||
}
|
||||
|
||||
if (needsComptime)
|
||||
tryQueueFiles = true;
|
||||
|
||||
if (hotProject != null)
|
||||
{
|
||||
mWorkspace.mHadHotCompileSinceLastFullCompile = true;
|
||||
|
@ -9210,6 +9220,9 @@ namespace IDE
|
|||
}
|
||||
}
|
||||
|
||||
if (needsComptime)
|
||||
doCompile = true;
|
||||
|
||||
if (!success)
|
||||
{
|
||||
bfCompiler.QueueDeletePassInstance(passInstance);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue