-
Notifications
You must be signed in to change notification settings - Fork 1
/
FelgoIOS.podspec
36 lines (21 loc) · 1.19 KB
/
FelgoIOS.podspec
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
Pod::Spec.new do |s|
s.name = "FelgoIOS"
s.version = "3.9.2"
s.summary = "Felgo in native iOS projects"
s.description = <<-DESC
Use Felgo, Qt and QML in a native iOS app from Xcode.
DESC
s.homepage = "https://felgo.com"
s.license = "Proprietary"
s.author = { "FELGO GmbH" => "[email protected]" }
s.platform = :ios, "10.0"
s.source = { :git => 'https://github.com/FelgoSDK/FelgoIOS.git', :tag => '3.9.2' }
s.preserve_paths = "headers/*.h", "libs/*.a"
s.source_files = "include/FelgoIOS.h", "include/FelgoIOSView.h"
s.public_header_files = "include/FelgoIOS.h", "include/FelgoIOSView.h"
s.header_mappings_dir = "include"
# add all frameworks used by Qt/Felgo:
s.frameworks = "AVFoundation", "AddressBook", "AssetsLibrary", "AudioToolbox", "CoreAudio", "CoreBluetooth", "CoreFoundation", "CoreGraphics", "CoreLocation", "CoreMedia", "CoreMotion", "CoreServices", "CoreText", "CoreVideo", "Foundation", "GSS", "GameController", "ImageIO", "Metal", "Photos", "QuartzCore", "Security", "SystemConfiguration", "UIKit", "WebKit"
s.vendored_libraries = "libs/*.a"
s.libraries = "z", "m", "stdc++"
end