forked from erickjung/SwiftGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftGui.podspec
23 lines (21 loc) · 1.06 KB
/
SwiftGui.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.name = "SwiftGui"
spec.version = "0.9.3"
spec.summary = "SwiftGUI is an experimental API inspired by SwiftUI DSL."
spec.homepage = "https://github.com/erickjung/SwiftGUI"
spec.license = { :type => 'Copyright', :file => 'LICENSE' }
spec.author = { "Erick Jung" => "[email protected]" }
spec.ios.deployment_target = "11.0"
spec.osx.deployment_target = "10.13"
spec.source = { :git => "https://github.com/erickjung/SwiftGUI.git", :tag => spec.version }
spec.source_files = 'Source/SwiftGui/**/*.{h,m,mm,cpp,swift}'
spec.osx.source_files = 'Source/SwiftGuiMac/**/*.{h,m,mm,cpp,swift}'
spec.swift_version = '5.0'
spec.public_header_files = [
'Source/SwiftGui/Core/ImGuiWrapper.h',
'Source/SwiftGui/Core/ImGuiStyleWrapper.h',
'Source/SwiftGui/Core/TextEditorWrapper.h',
'Source/SwiftGui/Core/GuiRenderer.h',
]
spec.resources = 'Source/SwiftGui/Resources/**/*.ttf'
end