-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathNESDeltaCore.podspec
More file actions
27 lines (22 loc) · 1.19 KB
/
NESDeltaCore.podspec
File metadata and controls
27 lines (22 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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