mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-13 05:44:11 +02:00
Added prebuild command queuing
This commit is contained in:
parent
d67e03f137
commit
7d52b560dd
1 changed files with 12 additions and 1 deletions
|
@ -1009,7 +1009,7 @@ namespace IDE
|
||||||
|
|
||||||
if (hotProject == null)
|
if (hotProject == null)
|
||||||
{
|
{
|
||||||
switch (QueueProjectCustomBuildCommands(project, targetPath, runAfter ? options.mBuildOptions.mBuildCommandsOnRun : options.mBuildOptions.mBuildCommandsOnCompile, options.mBuildOptions.mPostBuildCmds))
|
switch (QueueProjectCustomBuildCommands(project, targetPath, runAfter ? options.mBuildOptions.mBuildCommandsOnRun : options.mBuildOptions.mBuildCommandsOnCompile, options.mBuildOptions.mPreBuildCmds))
|
||||||
{
|
{
|
||||||
case .NoCommands:
|
case .NoCommands:
|
||||||
case .HadCommands:
|
case .HadCommands:
|
||||||
|
@ -1175,6 +1175,17 @@ namespace IDE
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (hotProject == null)
|
||||||
|
{
|
||||||
|
switch (QueueProjectCustomBuildCommands(project, targetPath, runAfter ? options.mBuildOptions.mBuildCommandsOnRun : options.mBuildOptions.mBuildCommandsOnCompile, options.mBuildOptions.mPostBuildCmds))
|
||||||
|
{
|
||||||
|
case .NoCommands:
|
||||||
|
case .HadCommands:
|
||||||
|
case .Failed:
|
||||||
|
completedCompileCmd.mFailed = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue