You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
9 years ago
|
//
|
||
|
// Copyright (c) 2014-present, Facebook, Inc.
|
||
|
// All rights reserved.
|
||
|
//
|
||
|
// This source code is licensed under the BSD-style license found in the
|
||
|
// LICENSE file in the root directory of this source tree. An additional grant
|
||
|
// of patent rights can be found in the PATENTS file in the same directory.
|
||
|
//
|
||
|
|
||
|
// Don't warn on implicit property synthesis
|
||
|
CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS = YES
|
||
|
|
||
|
// Treat warnings as errors
|
||
|
GCC_TREAT_WARNINGS_AS_ERRORS = YES
|
||
|
CLANG_WARN_CONSTANT_CONVERSION = YES
|
||
|
CLANG_WARN_ENUM_CONVERSION = YES
|
||
|
CLANG_WARN_INT_CONVERSION = YES
|
||
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
|
||
|
CLANG_WARN_BOOL_CONVERSION = YES
|
||
|
CLANG_WARN_EMPTY_BODY = YES
|
||
|
GCC_WARN_UNINITIALIZED_AUTOS = YES
|
||
|
GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO
|
||
|
GCC_WARN_UNUSED_FUNCTION = YES
|
||
|
GCC_WARN_SHADOW = YES
|
||
|
GCC_WARN_SIGN_COMPARE = YES
|
||
|
WARNING_CFLAGS = -Wall -Wextra -Wno-unused-parameter
|
||
|
|
||
|
// Enable C++11 support
|
||
|
CLANG_CXX_LANGUAGE_STANDARD = c++11
|
||
|
CLANG_CXX_LIBRARY = libc++
|
||
|
|
||
|
// Enable ARC
|
||
|
CLANG_ENABLE_OBJC_ARC = YES
|
||
|
|
||
|
// Explicitly enable Clang modules
|
||
|
CLANG_ENABLE_MODULES=YES
|
||
|
|
||
|
// Allow #import'ing code generated headers from DERIVED_FILE_DIR.
|
||
|
HEADER_SEARCH_PATHS = $(inherited) $(DERIVED_FILE_DIR)
|