Method: FrameworkGenerate::Platform#default_search_paths

Defined in:
lib/framework-generate/platform.rb

#default_search_pathsObject



51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/framework-generate/platform.rb', line 51

def default_search_paths
  case @type
  when :macos
    '$(SRCROOT)/Carthage/Build/Mac/ $(inherited)'
  when :ios
    '$(SRCROOT)/Carthage/Build/iOS/ $(inherited)'
  when :tvos
    '$(SRCROOT)/Carthage/Build/tvOS/ $(inherited)'
  when :watchos
    '$(SRCROOT)/Carthage/Build/watchOS/ $(inherited)'
  else
    abort 'platform not supported!'
  end
end