1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-14 00:14:18 +00:00

Introjucer: added link flags to LOCAL_LDLIBS for android build.

This commit is contained in:
jules 2013-06-04 10:22:31 +01:00
parent 31fc78b314
commit ce3050f547

View file

@ -447,7 +447,8 @@ private:
String getLDLIBS (const AndroidBuildConfiguration& config) const
{
return " LOCAL_LDLIBS :=" + config.getGCCLibraryPathFlags()
+ " -llog -lGLESv2 " + getExternalLibraryFlags (config);
+ " -llog -lGLESv2 " + getExternalLibraryFlags (config)
+ " " + replacePreprocessorTokens (config, getExtraLinkerFlagsString());
}
String createIncludePathFlags (const BuildConfiguration& config) const