1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

CMake: Fix missing pragma in generated resource.rc files

This commit is contained in:
reuk 2020-04-15 11:32:40 +01:00
parent c244bbbdb0
commit 7dca2fb488
2 changed files with 16 additions and 29 deletions

View file

@ -195,20 +195,5 @@ namespace build_tools
}
}
}
/** Takes a string and returns a version of it where standard C++ escape sequences have been
used to replace any non-ascii bytes.
Although not strictly a tokenising function, this is still a function that often comes in
handy when working with C++ code!
@see writeEscapeChars
*/
static String addEscapeChars (const String& s)
{
MemoryOutputStream mo;
writeEscapeChars (mo, s.toRawUTF8(), -1, -1, false, true, true);
return mo.toString();
}
}
}