Mach: add as_cmake_arch_flags helper

This commit is contained in:
Misty De Meo 2013-08-11 19:13:16 -07:00
parent ab633864d5
commit b0d45b29bd

View File

@ -32,6 +32,10 @@ module ArchitectureListExtension
self.collect{ |a| "-arch #{a}" }.join(' ')
end
def as_cmake_arch_flags
self.join(';')
end
protected
def intersects_all?(*set)