As of iOS 13.3.1, apps installed with free developer accounts that contain embedded frameworks fail to launch. To work around this, we now link all dependencies via Cocoapods as static libraries.
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "NESDeltaCore",
|
|
"version": "0.1",
|
|
"summary": "Nintendo Entertainment System plug-in for Delta emulator.",
|
|
"description": "iOS framework that wraps Nestopia to allow playing NES games with Delta emulator.",
|
|
"homepage": "https://github.com/rileytestut/NESDeltaCore",
|
|
"platforms": {
|
|
"ios": "12.0"
|
|
},
|
|
"source": {
|
|
"git": "https://github.com/rileytestut/NESDeltaCore.git"
|
|
},
|
|
"authors": {
|
|
"Riley Testut": "riley@rileytestut.com"
|
|
},
|
|
"social_media_url": "https://twitter.com/rileytestut",
|
|
"source_files": [
|
|
"NESDeltaCore/**/*.{h,m,mm,swift}",
|
|
"NestopiaJS/NESEmulatorBridge.cpp",
|
|
"nestopia/source/core/**/*.{hpp,h}"
|
|
],
|
|
"public_header_files": "NestopiaJS/NESEmulatorBridge.hpp",
|
|
"header_mappings_dir": "",
|
|
"resource_bundles": {
|
|
"NESDeltaCore": [
|
|
"NESDeltaCore/**/*.deltamapping",
|
|
"NESDeltaCore/**/*.deltaskin",
|
|
"NestopiaJS/NstDatabase.xml"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"DeltaCore": [
|
|
|
|
]
|
|
},
|
|
"xcconfig": {
|
|
"SWIFT_ACTIVE_COMPILATION_CONDITIONS": "FRAMEWORK NATIVE",
|
|
"USER_HEADER_SEARCH_PATHS": "\"${PODS_CONFIGURATION_BUILD_DIR}/DeltaCore/Swift Compatibility Header\""
|
|
}
|
|
}
|