|
| 1 | +Pod::Spec.new do |s| |
| 2 | + s.name = "ruisapp" |
| 3 | + s.version = "0.2.129" |
| 4 | + s.summary = "Intrusive C++ cross-platform GUI library." |
| 5 | + s.homepage = "https://github.com/cppfw/#{s.name}" |
| 6 | + s.license = { :type => 'MIT', :file => 'LICENSE' } |
| 7 | + s.author = { "Ivan Gagis" => "igagis@gmail.com" } |
| 8 | + s.platform = :ios |
| 9 | + |
| 10 | + # TODO: make 11.0 ? |
| 11 | + s.ios.deployment_target = '13.0' |
| 12 | + |
| 13 | + s.source = { :http => "http://gagis.hopto.org/repo/cppfw/cocoapods/#{s.name}-#{s.version}.zip" } |
| 14 | + |
| 15 | + s.source_files = "include/**/*.{hpp,h}" |
| 16 | + s.header_mappings_dir = "include" |
| 17 | + |
| 18 | + s.ios.vendored_framework = "lib/ios/#{s.name}.xcframework" |
| 19 | + |
| 20 | + #TODO: is this needed? |
| 21 | + # we don't use Objective-C Automatic Resource Counting |
| 22 | + #s.requires_arc = false |
| 23 | + |
| 24 | + #TODO: is this needed? |
| 25 | + #s.frameworks = 'GLKit' |
| 26 | + |
| 27 | + s.dependency 'utki', '>= 1.1.124' |
| 28 | + s.dependency 'nitki', '>= 1.0.41' |
| 29 | + s.dependency 'ruis', '>= 0.5.210' |
| 30 | + s.dependency 'papki', '>= 1.0.93' |
| 31 | + s.dependency 'r4', '>= 0.1.53' |
| 32 | + s.dependency 'ruis-render-opengles', '>= 0.1.50' |
| 33 | +end |
0 commit comments