blob: 54e7fb20af19ee0e5ba47371858814a692ec0ca3 [file] [log] [blame]
Sean McBride8f13c722012-10-31 13:18:32 -04001//
hjelmn@cs.unm.edu1eff2202014-01-08 23:50:34 +00002// libusb Xcode configuration file
Sean McBride8f13c722012-10-31 13:18:32 -04003// Copyright © 2012 Pete Batard <pete@akeo.ie>
hjelmn@cs.unm.edu1eff2202014-01-08 23:50:34 +00004// For more information, please visit: <http://libusb.info>
Sean McBride8f13c722012-10-31 13:18:32 -04005//
6// This library is free software; you can redistribute it and/or
7// modify it under the terms of the GNU Lesser General Public
8// License as published by the Free Software Foundation; either
9// version 2.1 of the License, or (at your option) any later version.
10//
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14// Lesser General Public License for more details.
15//
16// You should have received a copy of the GNU Lesser General Public
17// License along with this library; if not, write to the Free Software
18// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
Chris Dickens9a1bc8c2020-03-30 12:28:11 -070020// Use GNU11 dialect.
21GCC_C_LANGUAGE_STANDARD = gnu11
Sean McBride8f13c722012-10-31 13:18:32 -040022
Sean McBride0aeb46c2019-02-07 15:11:56 -050023// Don't search user paths with <> style #includes.
24ALWAYS_SEARCH_USER_PATHS = NO
25
Chris Dickens09d03122020-03-30 16:53:43 -070026// Enable weak references for Objective-C
27CLANG_ENABLE_OBJC_WEAK = YES
28
29// Compiler errors.
30GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES
31
Sean McBride8f13c722012-10-31 13:18:32 -040032// Compiler warnings.
Sean McBride8f13c722012-10-31 13:18:32 -040033GCC_WARN_64_TO_32_BIT_CONVERSION = YES
Sean McBride8f13c722012-10-31 13:18:32 -040034GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES
Sean McBride8f13c722012-10-31 13:18:32 -040035GCC_WARN_ABOUT_MISSING_NEWLINE = YES
Chris Dickens09d03122020-03-30 16:53:43 -070036GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES
37GCC_WARN_ABOUT_RETURN_TYPE = YES
38GCC_WARN_FOUR_CHARACTER_CONSTANTS = YES
39GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES
40GCC_WARN_SHADOW = YES
41GCC_WARN_UNINITIALIZED_AUTOS = YES
Sean McBride8f13c722012-10-31 13:18:32 -040042GCC_WARN_UNKNOWN_PRAGMAS = YES
43GCC_WARN_UNUSED_FUNCTION = YES
44GCC_WARN_UNUSED_LABEL = YES
Sean McBride8a05a3f2018-12-15 17:08:34 -050045GCC_WARN_UNUSED_PARAMETER = YES
Chris Dickens09d03122020-03-30 16:53:43 -070046GCC_WARN_UNUSED_VARIABLE = YES
Sean McBride8a05a3f2018-12-15 17:08:34 -050047CLANG_WARN_ASSIGN_ENUM = YES
Chris Dickens09d03122020-03-30 16:53:43 -070048CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
49CLANG_WARN_BOOL_CONVERSION = YES
Sean McBride8a05a3f2018-12-15 17:08:34 -050050CLANG_WARN_COMMA = YES
Chris Dickens09d03122020-03-30 16:53:43 -070051CLANG_WARN_CONSTANT_CONVERSION = YES
52CLANG_WARN_DOCUMENTATION_COMMENTS = YES
53CLANG_WARN_EMPTY_BODY = YES
54CLANG_WARN_ENUM_CONVERSION = YES
55CLANG_WARN_FLOAT_CONVERSION = YES
56CLANG_WARN_INFINITE_RECURSION = YES
57CLANG_WARN_INT_CONVERSION = YES
58CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
59CLANG_WARN_STRICT_PROTOTYPES = YES
Sean McBride8a05a3f2018-12-15 17:08:34 -050060CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES
Sean McBride388a8f72014-03-21 14:00:04 -040061
62// Static analyzer warnings.
Chris Dickens09d03122020-03-30 16:53:43 -070063CLANG_ANALYZER_NONNULL = YES
Sean McBride388a8f72014-03-21 14:00:04 -040064CLANG_ANALYZER_SECURITY_FLOATLOOPCOUNTER = YES
65CLANG_ANALYZER_SECURITY_INSECUREAPI_RAND = YES