From 42301905e29dd4b112c8d2deb52da80bb90253ac Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Fri, 22 Feb 2019 10:51:08 +0000 Subject: [PATCH] Projucer: Fixed a bug exporting CLion projects --- .../Projucer/Source/ProjectSaving/jucer_ProjectExport_CLion.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_CLion.h b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_CLion.h index 88d6ec4a79..70b91db7a8 100644 --- a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_CLion.h +++ b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_CLion.h @@ -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