Skip to content

Instantly share code, notes, and snippets.

@samdmarshall
Last active May 16, 2016 21:13
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/6bb0a9bfb839b0375de2a22ead005153 to your computer and use it in GitHub Desktop.
Save samdmarshall/6bb0a9bfb839b0375de2a22ead005153 to your computer and use it in GitHub Desktop.
# these are some places you can put comments
include "root.xcconfig" # like here
include "codesign.xcconfig"
# or here
setting PODS_ROOT {
for * {
${SRCROOT}/Pods
}
}
# and here
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"
}
} # but not inside of the `setting` declarations
setting OTHER_LDFLAGS {
for Debug {
-framework "Reveal"
}
for Release
}
setting OTHER_CFLAGS use WRAPPER_EXTENSION {
for app {
-Wall
}
for xctest {
-Wall,
-Werror
}
}
setting PRODUCT_NAME {
if arch=i386 {
MacApp32
}
if arch=x86_64 {
MacApp64
}
if arch=*86* {
IntelApp
}
}
// Generated by pyconfig
#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))
PRODUCT_NAME[arch=i386] = MacApp32
PRODUCT_NAME[arch=x86_64] = MacApp64
PRODUCT_NAME[arch=*86*] = IntelApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment