Xcode project: do not warn about unused local typedefs

Otherwise Xcode 7 (and its version of clang) produce more than 100
boost related unused typedef warnings.
This commit is contained in:
mattsc 2015-09-19 15:27:10 -07:00
parent 205b82da69
commit 6a3a346e41

View file

@ -5531,9 +5531,18 @@
"$(OTHER_CFLAGS)",
"-isystem",
./Headers,
"-Wno-unused-local-typedefs",
);
PRODUCT_NAME = Wesnoth;
SDKROOT = "";
WARNING_CFLAGS = (
"-Werror=format",
"-Werror=missing-braces",
"-Werror=return-type",
"-Werror=missing-field-initializers",
"-Werror=sign-compare",
"-Werror=switch",
);
WRAPPER_EXTENSION = app;
};
name = Debug;
@ -5571,6 +5580,14 @@
./Headers,
);
PRODUCT_NAME = Wesnoth;
WARNING_CFLAGS = (
"-Werror=format",
"-Werror=missing-braces",
"-Werror=return-type",
"-Werror=missing-field-initializers",
"-Werror=sign-compare",
"-Werror=switch",
);
WRAPPER_EXTENSION = app;
};
name = Release;