Skip to content

Instantly share code, notes, and snippets.

@samdmarshall
Created May 16, 2016 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samdmarshall/4421701bf35350b412fab17769d9fc33 to your computer and use it in GitHub Desktop.
Save samdmarshall/4421701bf35350b412fab17769d9fc33 to your computer and use it in GitHub Desktop.
include "root.xcconfig"
include "codesign.xcconfig"
setting PODS_ROOT {
for * {
${SRCROOT}/Pods
}
}
setting HEADER_SEARCH_PATHS {
for * {
$(inherited),
"${PODS_ROOT}/Headers/Public",
"${PODS_ROOT}/Headers/Public/AFNetworking",
"${PODS_ROOT}/Headers/Public/Mantle",
"${PODS_ROOT}/Headers/Public/CocoaLumberjack",
"${PODS_ROOT}/Headers/Public/MBProgressHUD",
"${PODS_ROOT}/Headers/Public/Crashlytics"
}
}
setting OTHER_LDFLAGS {
for Debug {
-framework "Reveal"
},
for Release
}
setting OTHER_CFLAGS use WRAPPER_EXTENSION {
for app {
-Wall
},
for xctest {
-Wall,
-Werror
}
}
#include "root.xcconfig"
#include "codesign.xcconfig"
PODS_ROOT = ${SRCROOT}/Pods
HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/CocoaLumberjack" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Crashlytics"
OTHER_LDFLAGS_Debug = -framework "Reveal"
OTHER_LDFLAGS_Release =
OTHER_LDFLAGS = $(OTHER_LDFLAGS_$(CONFIGURATION))
OTHER_CFLAGS_app = -Wall
OTHER_CFLAGS_xctest = -Wall -Werror
OTHER_CFLAGS = $(OTHER_CFLAGS_$(WRAPPER_EXTENSION))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment