Skip to content

Instantly share code, notes, and snippets.

@ialexryan
Created August 5, 2014 23:59
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 ialexryan/cac006e338c445076724 to your computer and use it in GitHub Desktop.
Save ialexryan/cac006e338c445076724 to your computer and use it in GitHub Desktop.
ios_resource(
name = 'spotsResources',
dirs = [
'spots/Resources/app_icon',
],
files = [
'spots/Resources/Images.xcassets',
],
)
ios_binary(
name = 'spots',
gid = 'B381238519745C550003A599',
configs = fbobjc_configs(FBOBJC_APPLICATION),
info_plist = 'spots-Info.plist',
srcs = fbgroup(
glob([
'spots/Classes/**/*.m',
'spots/Classes/**/*.h',
])
),
frameworks = [
'$SDKROOT/System/Library/Frameworks/CoreGraphics.framework',
'$SDKROOT/System/Library/Frameworks/QuartzCore.framework',
'$SDKROOT/System/Library/Frameworks/Foundation.framework',
'$SDKROOT/System/Library/Frameworks/UIKit.framework',
'$SDKROOT/System/Library/Frameworks/AVFoundation.framework',
'$SDKROOT/System/Library/Frameworks/CoreLocation.framework',
'$SDKROOT/System/Library/Frameworks/MapKit.framework',
],
deps = [
':spotsResources',
'//VendorLib/Parse:Parse',
],
visibility = ['PUBLIC']
)
xcode_project_config(
name = 'project',
project_name = 'spots',
rules = [
':spots',
],
)
xcode_workspace_config(
name = 'workspace',
src_target = ':spots'
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment