- change: stop generating 'profile' compiler set

This commit is contained in:
Roy Qu 2022-05-09 17:17:01 +08:00
parent 03e588d173
commit 9b80407f88
3 changed files with 11 additions and 11 deletions

View File

@ -545,7 +545,7 @@
<enum>QTabWidget::South</enum>
</property>
<property name="currentIndex">
<number>4</number>
<number>0</number>
</property>
<property name="iconSize">
<size>

View File

@ -24,7 +24,7 @@
inkscape:pagecheckerboard="true"
showgrid="false"
inkscape:zoom="11.6"
inkscape:cx="3.7068965"
inkscape:cx="3.7068966"
inkscape:cy="20.12931"
inkscape:window-width="1920"
inkscape:window-height="1001"

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -2597,11 +2597,11 @@ bool Settings::CompilerSets::addSets(const QString &folder)
set64_32Options(baseSet);
setDebugOptions(baseSet);
baseSet = addSet(folder);
baseSet->setName(baseName + " " + platformName + " Profiling");
baseSet->setCompilerSetType(CompilerSetType::CST_PROFILING);
set64_32Options(baseSet);
setProfileOptions(baseSet);
// baseSet = addSet(folder);
// baseSet->setName(baseName + " " + platformName + " Profiling");
// baseSet->setCompilerSetType(CompilerSetType::CST_PROFILING);
// set64_32Options(baseSet);
// setProfileOptions(baseSet);
baseSet = addSet(folder);
}
@ -2618,10 +2618,10 @@ bool Settings::CompilerSets::addSets(const QString &folder)
baseSet->setCompilerSetType(CompilerSetType::CST_DEBUG);
setDebugOptions(baseSet);
baseSet = addSet(folder);
baseSet->setName(baseName + " " + platformName + " Profiling");
baseSet->setCompilerSetType(CompilerSetType::CST_PROFILING);
setProfileOptions(baseSet);
// baseSet = addSet(folder);
// baseSet->setName(baseName + " " + platformName + " Profiling");
// baseSet->setCompilerSetType(CompilerSetType::CST_PROFILING);
// setProfileOptions(baseSet);
mDefaultIndex = mList.size() - 2;
return true;