GBA001/Pods/Local Podspecs/DeltaCore.podspec.json
Riley Testut 6cca0f244f Replaces frameworks with static libraries
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.
2020-02-03 19:28:23 -08:00

37 lines
1.0 KiB
JSON

{
"name": "DeltaCore",
"version": "0.1",
"summary": "iOS Emulator Plug-in Framework",
"description": "iOS framework that powers Delta emulator.",
"homepage": "https://github.com/rileytestut/DeltaCore",
"platforms": {
"ios": "12.0"
},
"source": {
"git": "https://github.com/rileytestut/DeltaCore.git"
},
"authors": {
"Riley Testut": "riley@rileytestut.com"
},
"social_media_url": "https://twitter.com/rileytestut",
"source_files": "DeltaCore/**/*.{h,m,swift}",
"public_header_files": "DeltaCore/DeltaTypes.h",
"resource_bundles": {
"DeltaCore": [
"DeltaCore/**/*.deltamapping"
]
},
"dependencies": {
"ZIPFoundation": [
]
},
"xcconfig": {
"SWIFT_ACTIVE_COMPILATION_CONDITIONS": "STATIC_LIBRARY"
},
"script_phases": {
"name": "Copy Swift Header",
"script": "target_dir=${BUILT_PRODUCTS_DIR}\n\nmkdir -p ${target_dir}\n\n# Copy any file that looks like a Swift generated header to the include path\ncp ${DERIVED_SOURCES_DIR}/*-Swift.h ${target_dir}\n"
}
}