mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Projucer: Minor formatting tweaks in the makefile exporter code
This commit is contained in:
parent
363d86ce6e
commit
38da38f658
1 changed files with 4 additions and 6 deletions
|
|
@ -48,8 +48,8 @@ protected:
|
|||
addGCCOptimisationProperty (props);
|
||||
|
||||
props.add (new ChoicePropertyComponent (architectureTypeValue, "Architecture",
|
||||
{ "<None>", "Native", "32-bit (-m32)", "64-bit (-m64)", "ARM v6", "ARM v7" },
|
||||
{ { String() }, "-march=native", "-m32", "-m64", "-march=armv6", "-march=armv7" }),
|
||||
{ "<None>", "Native", "32-bit (-m32)", "64-bit (-m64)", "ARM v6", "ARM v7" },
|
||||
{ { String() }, "-march=native", "-m32", "-m64", "-march=armv6", "-march=armv7" }),
|
||||
"Specifies the 32/64-bit architecture to use.");
|
||||
}
|
||||
|
||||
|
|
@ -133,10 +133,8 @@ public:
|
|||
|
||||
StringArray getTargetSettings (const MakeBuildConfiguration& config) const
|
||||
{
|
||||
if (type == AggregateTarget)
|
||||
// the aggregate target should not specify any settings at all!
|
||||
// it just defines dependencies on the other targets.
|
||||
return {};
|
||||
if (type == AggregateTarget) // the aggregate target should not specify any settings at all!
|
||||
return {}; // it just defines dependencies on the other targets.
|
||||
|
||||
StringArray defines;
|
||||
auto defs = getDefines (config);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue