mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-29 02:40:05 +00:00
Add more sensible default architectures
This commit is contained in:
parent
d65efedc54
commit
a66d6aed28
1 changed files with 6 additions and 1 deletions
|
|
@ -137,7 +137,12 @@ protected:
|
|||
: BuildConfiguration (p, settings, e)
|
||||
{
|
||||
if (getArchitectures().isEmpty())
|
||||
getArchitecturesValue() = "armeabi armeabi-v7a";
|
||||
{
|
||||
if (isDebug())
|
||||
getArchitecturesValue() = "armeabi x86";
|
||||
else
|
||||
getArchitecturesValue() = "armeabi armeabi-v7a x86";
|
||||
}
|
||||
}
|
||||
|
||||
Value getArchitecturesValue() { return getValue (Ids::androidArchitectures); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue