mirror of
https://github.com/neon443/ShhShell.git
synced 2026-03-11 13:26:16 +00:00
fix dependencies building, looks like i cant use the sim bc libs are compiled for ios
This commit is contained in:
35
Carthage/Checkouts/NMSSH/NMSSH.podspec
vendored
Normal file
35
Carthage/Checkouts/NMSSH/NMSSH.podspec
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
Pod::Spec.new do |spec|
|
||||
spec.name = "NMSSH"
|
||||
spec.version = "2.3.1"
|
||||
spec.summary = "NMSSH is a clean, easy-to-use, unit tested framework for iOS and OSX that wraps libssh2."
|
||||
spec.homepage = "https://github.com/NMSSH/NMSSH"
|
||||
spec.license = 'MIT'
|
||||
spec.authors = { "Christoffer Lejdborg" => "hello@9muses.se", "Tommaso Madonia" => "tommaso@madonia.me" }
|
||||
|
||||
spec.source = { :git => "https://github.com/NMSSH/NMSSH.git", :tag => spec.version.to_s }
|
||||
|
||||
spec.requires_arc = true
|
||||
spec.platform = :ios
|
||||
spec.platform = :osx
|
||||
|
||||
spec.source_files = 'NMSSH', 'NMSSH/**/*.{h,m}'
|
||||
spec.public_header_files = 'NMSSH/*.h', 'NMSSH/Protocols/*.h', 'NMSSH/Config/NMSSHLogger.h'
|
||||
spec.private_header_files = 'NMSSH/Config/NMSSH+Protected.h', 'NMSSH/Config/socket_helper.h'
|
||||
spec.libraries = 'z'
|
||||
spec.framework = 'CFNetwork'
|
||||
|
||||
spec.ios.deployment_target = '7.0'
|
||||
spec.ios.vendored_libraries = 'NMSSH-iOS/Libraries/lib/libssh2.a', 'NMSSH-iOS/Libraries/lib/libssl.a', 'NMSSH-iOS/Libraries/lib/libcrypto.a'
|
||||
spec.ios.source_files = 'NMSSH-iOS', 'NMSSH-iOS/Libraries/**/*.h'
|
||||
spec.ios.public_header_files = 'NMSSH-iOS/Libraries/**/*.h'
|
||||
|
||||
spec.osx.deployment_target = '10.8'
|
||||
spec.osx.vendored_libraries = 'NMSSH-OSX/Libraries/lib/libssh2.a', 'NMSSH-OSX/Libraries/lib/libssl.a', 'NMSSH-OSX/Libraries/lib/libcrypto.a'
|
||||
spec.osx.source_files = 'NMSSH-OSX', 'NMSSH-OSX/Libraries/**/*.h'
|
||||
spec.osx.public_header_files = 'NMSSH-OSX/Libraries/**/*.h'
|
||||
|
||||
spec.xcconfig = {
|
||||
"OTHER_LDFLAGS" => "-ObjC",
|
||||
}
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user