Skip to content

Instantly share code, notes, and snippets.

@mbroadst
Created March 17, 2018 20:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbroadst/815516c9d971b87dbc780b421e1fc414 to your computer and use it in GitHub Desktop.
Save mbroadst/815516c9d971b87dbc780b421e1fc414 to your computer and use it in GitHub Desktop.
module testlib [system] {
header "test-library-shim.h"
link "testlib"
export *
}
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" => "mbroadst@gmail.com" }
spec.platform = :ios, "9.0"
spec.source = {
:git => "ssh://git@github.com/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