summaryrefslogtreecommitdiff
path: root/Xcode/common.xcconfig
diff options
context:
space:
mode:
authorSean McBride <sean@rogue-research.com>2019-02-07 15:11:56 -0500
committerNathan Hjelm <hjelmn@me.com>2019-04-04 21:20:48 -0600
commit0aeb46c3dd96e0e6c01a169414a6ba5f34d9ea18 (patch)
tree133425a2e5526c9eabb42cc9ac971c64237ad3f6 /Xcode/common.xcconfig
parent9501adff2455446aa6ce017525c9d747be67c115 (diff)
downloadlibusb-0aeb46c3dd96e0e6c01a169414a6ba5f34d9ea18.tar.gz
Fixed Xcode 10.1 warning by setting project setting 'ALWAYS_SEARCH_USER_PATHS = NO'
The warning was: "Traditional headermap style is no longer supported; please migrate to using separate headermaps and set 'ALWAYS_SEARCH_USER_PATHS' to NO." Also made sure all targets are referencing the xcconfig files. Closes #532 Signed-off-by: Nathan Hjelm <hjelmn@me.com>
Diffstat (limited to 'Xcode/common.xcconfig')
-rw-r--r--Xcode/common.xcconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/Xcode/common.xcconfig b/Xcode/common.xcconfig
index bb97789..2c7ff3c 100644
--- a/Xcode/common.xcconfig
+++ b/Xcode/common.xcconfig
@@ -23,6 +23,9 @@ GCC_STRICT_ALIASING = NO
// Use C99 dialect.
GCC_C_LANGUAGE_STANDARD = c99
+// Don't search user paths with <> style #includes.
+ALWAYS_SEARCH_USER_PATHS = NO
+
// Compiler warnings.
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES