Browse Source

Projucer: Trim the Oboe repository path string when saving the Android exporter

tags/2021-05-28
ed 7 years ago
parent
commit
a2002354a1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Android.h

+ 1
- 1
extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Android.h View File

@@ -362,7 +362,7 @@ private:
if (project.getConfigFlag ("JUCE_USE_ANDROID_OBOE").get()) if (project.getConfigFlag ("JUCE_USE_ANDROID_OBOE").get())
{ {
String oboePath (androidOboeRepositoryPath.get().toString().quoted());
String oboePath (androidOboeRepositoryPath.get().toString().trim().quoted());
mo << "SET(OBOE_DIR " << oboePath << ")" << newLine << newLine; mo << "SET(OBOE_DIR " << oboePath << ")" << newLine << newLine;
mo << "add_subdirectory (${OBOE_DIR} ./oboe)" << newLine << newLine; mo << "add_subdirectory (${OBOE_DIR} ./oboe)" << newLine << newLine;


Loading…
Cancel
Save