Browse Source

Projucer: Fixed a bug exporting CLion projects

tags/2021-05-28
Tom Poole 7 years ago
parent
commit
42301905e2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_CLion.h

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

@@ -1157,7 +1157,7 @@ private:
else if (configSettings[key] == "YES_AGGRESSIVE") compilerFlags.add ("--Wconditional-uninitialized");
else compilerFlags.add (")-Wno-uninitialized");
}
else if (key == "WARNING_CFLAGS") compilerFlags.add (configSettings[key]);
else if (key == "WARNING_CFLAGS") compilerFlags.add (configSettings[key].unquoted());
}
out << addToCMakeVariable ("CMAKE_CXX_FLAGS", compilerFlags.joinIntoString (" ")) << newLine


Loading…
Cancel
Save