Created
March 17, 2018 20:57
-
-
Save mbroadst/815516c9d971b87dbc780b421e1fc414 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module testlib [system] { | |
header "test-library-shim.h" | |
link "testlib" | |
export * | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |spec| | |
spec.name = "test-library" | |
spec.version = "0.0.1" | |
spec.summary = "test-library" | |
spec.homepage = "https://github.com/mbroadst/test-library" | |
spec.license = "Apache License 2.0" | |
spec.author = { "mbroadst" => "[email protected]" } | |
spec.platform = :ios, "9.0" | |
spec.source = { | |
:git => "ssh://[email protected]/mbroadst/test-library.git", | |
:branch => "master" | |
} | |
spec.requires_arc = true | |
spec.source_files = "test-library-shim.h" | |
spec.preserve_paths = [ "module.modulemap" ] | |
spec.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "$(inherited) $(PODS_ROOT)/test-library" } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment