- change: Don't generate project resource files for sdcc project.

This commit is contained in:
Roy Qu 2024-04-15 16:55:10 +08:00
parent a485dac4cd
commit aca3ce8b24
2 changed files with 3 additions and 0 deletions

View File

@ -144,6 +144,7 @@ Red Panda C++ Version 2.27
- enhancement: Auto type induction for "std::make_shared"/"std::make_unique". - enhancement: Auto type induction for "std::make_shared"/"std::make_unique".
- enhancement: sdcc project compiler: compile source file in subfolders. - enhancement: sdcc project compiler: compile source file in subfolders.
- fix: project options -> compiler set -> static link & auto convert charset options not correctly loaded. - fix: project options -> compiler set -> static link & auto convert charset options not correctly loaded.
- change: Don't generate project resource files for sdcc project.
Red Panda C++ Version 2.26 Red Panda C++ Version 2.26
- enhancement: Code suggestion for embedded std::vectors. - enhancement: Code suggestion for embedded std::vectors.

View File

@ -1362,6 +1362,8 @@ QString Project::folder()
void Project::buildPrivateResource() void Project::buildPrivateResource()
{ {
if (mOptions.type == ProjectType::MicroController)
return;
int comp = 0; int comp = 0;
foreach (const PProjectUnit& unit,mUnits) { foreach (const PProjectUnit& unit,mUnits) {
if ( if (