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

Projucer: Add C++17 flag to exporters that support it

This commit is contained in:
ed 2018-03-07 09:47:38 +00:00
parent 4d20d1a406
commit 06773f18bb
7 changed files with 12 additions and 10 deletions

View file

@ -738,8 +738,8 @@ void Project::createPropertyEditors (PropertyListBuilder& props)
"The namespace containing the binary assests.");
props.add (new ChoicePropertyComponent (cppStandardValue, "C++ Language Standard",
{ "C++11", "C++14", "Use Latest" },
{ "11", "14", "latest" }),
{ "C++11", "C++14", "C++17", "Use Latest" },
{ "11", "14", "17", "latest" }),
"The standard of the C++ language that will be used for compilation.");
props.add (new TextPropertyComponent (preprocessorDefsValue, "Preprocessor Definitions", 32768, true),