1
0
Fork 0
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:
hogliux 2015-11-03 20:46:00 +00:00
parent d65efedc54
commit a66d6aed28

View file

@ -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); }