Fix compiler warning when building with release configuration, since a static definition was missing

This commit is contained in:
Andreas Linde 2012-08-10 15:46:12 +02:00
parent e69a32a676
commit 0f9898b811

View File

@ -1040,7 +1040,10 @@
COPY_PHASE_STRIP = NO;
DEAD_CODE_STRIPPING = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_PREPROCESSOR_DEFINITIONS = "BITHOCKEY_STATIC_LIBRARY=1";
GCC_PREPROCESSOR_DEFINITIONS = (
"BITHOCKEY_STATIC_LIBRARY=1",
"$(inherited)",
);
GCC_THUMB_SUPPORT = NO;
GCC_VERSION = "";
GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;