-
Notifications
You must be signed in to change notification settings - Fork 11
/
Podfile
42 lines (35 loc) · 835 Bytes
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
swift_version="4.2"
target 'Fretboard iOS' do
use_frameworks!
pod 'MusicTheorySwift'
pod 'CenterTextLayer'
end
target 'Fretboard Mac' do
use_frameworks!
pod 'MusicTheorySwift'
pod 'CenterTextLayer'
end
target 'Fretboard TV' do
use_frameworks!
pod 'MusicTheorySwift'
pod 'CenterTextLayer'
end
target 'Example iOS' do
use_frameworks!
pod 'Fretboard', :path => '.'
end
target 'Example Mac' do
use_frameworks!
pod 'Fretboard', :path => '.'
end
target 'Example TV' do
use_frameworks!
pod 'Fretboard', :path => '.'
end
#post_install do |installer|
# installer.pods_project.build_configurations.each do |config|
# config.build_settings['LD_RUNPATH_SEARCH_PATHS'] = ['$(FRAMEWORK_SEARCH_PATHS)']
# end
#end