- change: Don't generate project resource files for sdcc project.
This commit is contained in:
parent
a485dac4cd
commit
aca3ce8b24
1
NEWS.md
1
NEWS.md
|
@ -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.
|
||||||
|
|
|
@ -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 (
|
||||||
|
|
Loading…
Reference in New Issue