Sha256: 2b9c5f005cdfb001065aa5095b0c3eb7817a520eec9f555653384ab7f8cf6cf3
Contents?: true
Size: 577 Bytes
Versions: 15
Compression:
Stored size: 577 Bytes
Contents
module Xcake # This build phase generator detects xcconfigs # files, adds them to the project and tries to connect them # to a configuration. # # TODO: In future we will implement a 2 phase file installer system. class XCConfigFileReferenceInstaller < FileReferenceInstaller def self.can_install_node(node) !File.directory?(node.path) && %w(.xcconfig).include?(File.extname(node.path)) end def add_file_reference_to_target(file_reference, target) #target.frameworks_build_phases.add_file_reference(file_reference) end end end
Version data entries
15 entries across 15 versions & 1 rubygems