move versionized_build_dir from config to xcodeconfig

This commit is contained in:
Laurent Sansonetti
2014-05-19 16:27:14 +02:00
committed by Watson
parent a4475dc024
commit 8964a0dfc7
2 changed files with 4 additions and 4 deletions

View File

@@ -199,10 +199,6 @@ module Motion; module Project
end
end
def versionized_build_dir(platform)
File.join(build_dir, platform + '-' + deployment_target + '-' + build_mode_name)
end
attr_reader :project_dir
def project_file

View File

@@ -242,6 +242,10 @@ EOS
@name + (spec_mode ? '_spec' : '')
end
def versionized_build_dir(platform)
File.join(build_dir, platform + '-' + deployment_target + '-' + build_mode_name)
end
def app_bundle_dsym(platform)
File.join(versionized_build_dir(platform), bundle_name + '.dSYM')
end