[Scummvm-git-logs] scummvm master -> 352eeb57951175886a3792aef4fb30cd831c4a93

criezy criezy at scummvm.org
Thu Apr 30 23:01:06 UTC 2020


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
352eeb5795 CREATE_PROJECT: Add c++11 warnings to xcode project


Commit: 352eeb57951175886a3792aef4fb30cd831c4a93
    https://github.com/scummvm/scummvm/commit/352eeb57951175886a3792aef4fb30cd831c4a93
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2020-05-01T00:01:02+01:00

Commit Message:
CREATE_PROJECT: Add c++11 warnings to xcode project

Changed paths:
    devtools/create_project/xcode.cpp


diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp
index 8082b06bdc..e325eb8707 100644
--- a/devtools/create_project/xcode.cpp
+++ b/devtools/create_project/xcode.cpp
@@ -944,6 +944,7 @@ void XcodeProvider::setupBuildConfiguration(const BuildSetup &setup) {
 	ValueList scummvm_WarningCFlags;
 	scummvm_WarningCFlags.push_back("-Wno-multichar");
 	scummvm_WarningCFlags.push_back("-Wno-undefined-var-template");
+	scummvm_WarningCFlags.push_back("-Wc++11-extensions");
 	ADD_SETTING_LIST(scummvm_Debug, "WARNING_CFLAGS", scummvm_WarningCFlags, kSettingsQuoteVariable | kSettingsAsList, 5);
 	ValueList scummvm_defines(_defines);
 	REMOVE_DEFINE(scummvm_defines, "MACOSX");




More information about the Scummvm-git-logs mailing list