1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Removed the live build

This commit is contained in:
Tom Poole 2021-05-14 08:18:19 +01:00
parent 64896eefcd
commit bfdda737a2
74 changed files with 673 additions and 7583 deletions

View file

@ -74,19 +74,6 @@ void ProjectSaver::saveBasicProjectItems (const OwnedArray<LibraryModule>& modul
writeModuleCppWrappers (modules);
}
Result ProjectSaver::saveContentNeededForLiveBuild()
{
auto modules = getModules();
if (errors.isEmpty())
{
saveBasicProjectItems (modules, loadUserContentFromAppConfig());
return Result::ok();
}
return Result::fail (errors[0]);
}
Project::Item ProjectSaver::addFileToGeneratedGroup (const File& file)
{
auto item = generatedFilesGroup.findItemForFile (file);