[libdwarf] move to proper location

This commit is contained in:
Watson
2015-02-24 21:34:47 +09:00
parent f109ac1b59
commit d218e621bf
2 changed files with 13 additions and 13 deletions

View File

@@ -44,6 +44,19 @@ module Motion; module Project;
def local_platform; 'iPhoneSimulator'; end
def deploy_platform; 'iPhoneOS'; end
def embed_dsym
if ENV['RM_TARGET_EMBED_DSYM']
ENV['RM_TARGET_EMBED_DSYM'] == "true" ? true : false
else
@embed_dsym
end
end
def embed_dsym=(boolean)
ENV.delete('RM_TARGET_EMBED_DSYM')
@embed_dsym = boolean
end
# App Extensions are required to include a 64-bit for App Store submission.
def archs
@archs ||= begin

View File

@@ -281,19 +281,6 @@ EOS
archs[platform].map { |x| "-arch #{x}" }.join(' ')
end
def embed_dsym
if ENV['RM_TARGET_EMBED_DSYM']
ENV['RM_TARGET_EMBED_DSYM'] == "true" ? true : false
else
@embed_dsym
end
end
def embed_dsym=(boolean)
ENV.delete('RM_TARGET_EMBED_DSYM')
@embed_dsym = boolean
end
def common_flags(platform)
"#{arch_flags(platform)} -isysroot \"#{unescape_path(sdk(platform))}\" -F#{sdk(platform)}/System/Library/Frameworks"
end