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.
49 lines
1.6 KiB
JSON
49 lines
1.6 KiB
JSON
{
|
|
"name": "DSDeltaCore",
|
|
"version": "0.1",
|
|
"summary": "Nintendo DS plug-in for Delta emulator.",
|
|
"description": "iOS framework that wraps DeSmuME to allow playing Nintendo DS games with Delta emulator.",
|
|
"homepage": "https://github.com/rileytestut/DSDeltaCore",
|
|
"platforms": {
|
|
"ios": "12.0"
|
|
},
|
|
"source": {
|
|
"git": "https://github.com/rileytestut/DSDeltaCore.git"
|
|
},
|
|
"authors": {
|
|
"Riley Testut": "riley@rileytestut.com"
|
|
},
|
|
"social_media_url": "https://twitter.com/rileytestut",
|
|
"source_files": [
|
|
"DSDeltaCore/**/*.{swift}",
|
|
"DSDeltaCore/Bridge/DSEmulatorBridge.mm",
|
|
"DSDeltaCore/Types/DSTypes.{h,m}",
|
|
"desmume/desmume/src/*.{h,hpp}",
|
|
"desmume/desmume/src/libretro-common/include/*.{h,hpp}",
|
|
"desmume/desmume/src/libretro-common/include/math/*.{h,hpp}",
|
|
"desmume/desmume/src/metaspu/**/*.{h,hpp}",
|
|
"libDeSmuME/*.{h,hpp}"
|
|
],
|
|
"public_header_files": [
|
|
"DSDeltaCore/Types/DSTypes.h",
|
|
"DSDeltaCore/Bridge/DSEmulatorBridge.h"
|
|
],
|
|
"header_mappings_dir": "",
|
|
"resource_bundles": {
|
|
"DSDeltaCore": [
|
|
"DSDeltaCore/**/*.deltamapping",
|
|
"DSDeltaCore/**/*.deltaskin"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"DeltaCore": [
|
|
|
|
]
|
|
},
|
|
"xcconfig": {
|
|
"HEADER_SEARCH_PATHS": "\"${PODS_CONFIGURATION_BUILD_DIR}\" \"$(PODS_ROOT)/Headers/Private/DSDeltaCore/desmume/desmume/src/libretro-common/include\"",
|
|
"USER_HEADER_SEARCH_PATHS": "\"${PODS_CONFIGURATION_BUILD_DIR}/DeltaCore/Swift Compatibility Header\"",
|
|
"OTHER_CFLAGS": "-DHOST_DARWIN -DDESMUME_COCOA -DHAVE_OPENGL -DHAVE_LIBZ -DANDROID -fexceptions -ftree-vectorize -DCOMPRESS_MT -DIOS -DOBJ_C -marm -fvisibility=hidden"
|
|
}
|
|
}
|