-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
27 lines (23 loc) · 1.11 KB
/
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
workspace 'MaterialMotionDirectManipulation.xcworkspace'
use_frameworks!
pod 'MaterialMotionRuntime', :git => 'https://github.com/material-motion/runtime-objc.git', :branch => 'develop'
target "Catalog" do
pod 'CatalogByConvention'
pod 'MaterialMotionDirectManipulation/examples', :path => './'
project 'examples/apps/Catalog/Catalog.xcodeproj'
end
target "UnitTests" do
project 'examples/apps/Catalog/Catalog.xcodeproj'
pod 'MaterialMotionDirectManipulation/tests', :path => './'
pod 'MaterialMotionDirectManipulation/lib', :path => './'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |configuration|
configuration.build_settings['SWIFT_VERSION'] = "3.0"
if target.name.start_with?("Material")
configuration.build_settings['WARNING_CFLAGS'] ="$(inherited) -Wall -Wcast-align -Wconversion -Werror -Wextra -Wimplicit-atomic-properties -Wmissing-prototypes -Wno-sign-conversion -Wno-unused-parameter -Woverlength-strings -Wshadow -Wstrict-selector-match -Wundeclared-selector -Wunreachable-code"
end
end
end
end