module Pod class XBuilder module XcodeXBuilder def xcode_xbuild(defines, configuration, work_dir, build_dir = 'export') if defined?(Pod::DONT_CODESIGN) defines = "#{defines} CODE_SIGN_IDENTITY=\"\" CODE_SIGNING_REQUIRED=NO" end pwd = Pathname.pwd Dir.chdir work_dir command = "xcodebuild #{defines} BUILD_DIR=#{build_dir} BUILD_LIBRARY_FOR_DISTRIBUTION=YES clean build -configuration #{configuration} -alltargets 2>&1" UI.puts("XBuilder command:#{command}") output = `#{command}`.lines.to_a Dir.chdir pwd if $?.exitstatus != 0 Pod::ErrorUtil.error_report command,output Process.exit -1 end end end end end