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:
parent
205b82da69
commit
6a3a346e41
1 changed files with 17 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue