Browse Source

Introjucer: added link flags to LOCAL_LDLIBS for android build.

tags/2021-05-28
jules 12 years ago
parent
commit
ce3050f547
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      extras/Introjucer/Source/Project Saving/jucer_ProjectExport_Android.h

+ 2
- 1
extras/Introjucer/Source/Project Saving/jucer_ProjectExport_Android.h 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


Loading…
Cancel
Save