28 lines
1.2 KiB
Ruby
28 lines
1.2 KiB
Ruby
Pod::Spec.new do |spec|
|
|
spec.name = "NESDeltaCore"
|
|
spec.version = "0.1"
|
|
spec.summary = "Nintendo Entertainment System plug-in for Delta emulator."
|
|
spec.description = "iOS framework that wraps Nestopia to allow playing NES games with Delta emulator."
|
|
spec.homepage = "https://github.com/rileytestut/NESDeltaCore"
|
|
spec.platform = :ios, "14.0"
|
|
spec.source = { :git => "https://github.com/rileytestut/NESDeltaCore.git" }
|
|
|
|
spec.author = { "Riley Testut" => "riley@rileytestut.com" }
|
|
spec.social_media_url = "https://twitter.com/rileytestut"
|
|
|
|
spec.source_files = "NESDeltaCore/**/*.{h,m,mm,swift}", "NestopiaJS/NESEmulatorBridge.cpp", "nestopia/source/core/**/*.{hpp,h}"
|
|
spec.public_header_files = "NestopiaJS/NESEmulatorBridge.hpp"
|
|
spec.header_mappings_dir = ""
|
|
spec.resource_bundles = {
|
|
"NESDeltaCore" => ["NESDeltaCore/**/*.deltamapping", "NESDeltaCore/**/*.deltaskin", "NestopiaJS/NstDatabase.xml"]
|
|
}
|
|
|
|
spec.dependency 'DeltaCore'
|
|
|
|
spec.xcconfig = {
|
|
"SWIFT_ACTIVE_COMPILATION_CONDITIONS" => "FRAMEWORK NATIVE",
|
|
"USER_HEADER_SEARCH_PATHS" => '"${PODS_CONFIGURATION_BUILD_DIR}/DeltaCore/Swift Compatibility Header"'
|
|
}
|
|
|
|
end
|