[build] Move platform libs into a separate project
This commit is contained in:
@@ -1,46 +0,0 @@
|
||||
apply plugin: 'konan'
|
||||
|
||||
buildscript {
|
||||
|
||||
def konanVersion = gradle.startParameter.projectProperties['konanVersion']
|
||||
|
||||
dependencies {
|
||||
classpath files("../tools/kotlin-native-gradle-plugin/build/libs/kotlin-native-gradle-plugin-${konanVersion}.jar")
|
||||
}
|
||||
}
|
||||
|
||||
def taskName = "${gradle.startParameter.projectProperties['name']}"
|
||||
String konanHome = gradle.startParameter.projectProperties['konan.home']
|
||||
List<String> libs = gradle.startParameter.projectProperties.libraries.split(" ").findAll { !it.isEmpty() }
|
||||
String targetName = gradle.startParameter.projectProperties.target
|
||||
|
||||
konan.targets = [targetName]
|
||||
|
||||
konanArtifacts {
|
||||
interop("$taskName") {
|
||||
defFile gradle.startParameter.projectProperties.defFile
|
||||
noDefaultLibs true
|
||||
libraries {
|
||||
files libs.collect { "$konanHome/klib/platform/$targetName/$it" }
|
||||
}
|
||||
extraOpts '--purge_user_libs'
|
||||
}
|
||||
}
|
||||
|
||||
def suffix = gradle.startParameter.projectProperties['suffix']
|
||||
def klibProgram = suffix?"$konanHome/bin/klib.$suffix" : "$konanHome/bin/klib"
|
||||
|
||||
task klibInstall(type:Exec) {
|
||||
String repo = "$konanHome/klib/platform/$targetName"
|
||||
doFirst {
|
||||
new File(repo).mkdirs()
|
||||
}
|
||||
|
||||
dependsOn konanArtifacts."$taskName"."$targetName"
|
||||
commandLine klibProgram,
|
||||
'install',
|
||||
konanArtifacts."$taskName"."$targetName".artifact,
|
||||
'-target', gradle.startParameter.projectProperties.target,
|
||||
'-repository',
|
||||
repo
|
||||
}
|
||||
@@ -1,64 +0,0 @@
|
||||
depends = posix
|
||||
package = platform.android
|
||||
headers = jni.h android/api-level.h android/asset_manager.h android/asset_manager_jni.h android/bitmap.h \
|
||||
android/configuration.h android/dlext.h android/input.h android/keycodes.h android/log.h \
|
||||
android/looper.h android/native_activity.h android/native_window.h android/native_window_jni.h \
|
||||
android/obb.h android/rect.h android/sensor.h android/storage_manager.h android/tts.h \
|
||||
android/window.h
|
||||
|
||||
headerFilter = **
|
||||
|
||||
linkerOpts = -landroid -llog -ljnigraphics
|
||||
|
||||
---
|
||||
|
||||
struct NativeActivityState {
|
||||
struct ANativeActivity* activity;
|
||||
void* savedState;
|
||||
size_t savedStateSize;
|
||||
struct ALooper* looper;
|
||||
};
|
||||
|
||||
void getNativeActivityState(struct NativeActivityState* state);
|
||||
|
||||
void notifySysEventProcessed();
|
||||
|
||||
#define LOOPER_ID_SYS 1
|
||||
|
||||
typedef enum NativeActivityEventKind {
|
||||
UNKNOWN,
|
||||
DESTROY,
|
||||
START,
|
||||
RESUME,
|
||||
SAVE_INSTANCE_STATE,
|
||||
PAUSE,
|
||||
STOP,
|
||||
CONFIGURATION_CHANGED,
|
||||
LOW_MEMORY,
|
||||
WINDOW_GAINED_FOCUS,
|
||||
WINDOW_LOST_FOCUS,
|
||||
NATIVE_WINDOW_CREATED,
|
||||
NATIVE_WINDOW_DESTROYED,
|
||||
INPUT_QUEUE_CREATED,
|
||||
INPUT_QUEUE_DESTROYED
|
||||
} NativeActivityEventKind;
|
||||
|
||||
struct NativeActivityEvent {
|
||||
NativeActivityEventKind eventKind;
|
||||
};
|
||||
|
||||
struct NativeActivitySaveStateEvent {
|
||||
NativeActivityEventKind eventKind;
|
||||
void* savedState;
|
||||
size_t savedStateSize;
|
||||
};
|
||||
|
||||
struct NativeActivityWindowEvent {
|
||||
NativeActivityEventKind eventKind;
|
||||
struct ANativeWindow* window;
|
||||
};
|
||||
|
||||
struct NativeActivityQueueEvent {
|
||||
NativeActivityEventKind eventKind;
|
||||
struct AInputQueue* queue;
|
||||
};
|
||||
@@ -1,5 +0,0 @@
|
||||
depends = glesCommon posix
|
||||
package = platform.egl
|
||||
headers = EGL/egl.h EGL/eglext.h EGL/eglplatform.h
|
||||
headerFilter = EGL/**
|
||||
linkerOpts = -lEGL
|
||||
@@ -1,5 +0,0 @@
|
||||
depends = glesCommon posix
|
||||
package = platform.gles
|
||||
headers = GLES/gl.h GLES/glext.h GLES/glplatform.h
|
||||
headerFilter = GLES/**
|
||||
linkerOpts = -lGLESv1_CM
|
||||
@@ -1,5 +0,0 @@
|
||||
depends = glesCommon posix
|
||||
package = platform.gles2
|
||||
headers = GLES2/gl2.h GLES2/gl2ext.h GLES2/gl2platform.h
|
||||
headerFilter = GLES2/**
|
||||
linkerOpts = -lGLESv2
|
||||
@@ -1,5 +0,0 @@
|
||||
depends = glesCommon posix
|
||||
package = platform.gles3
|
||||
headers = GLES3/gl3.h GLES3/gl3ext.h GLES3/gl3platform.h
|
||||
headerFilter = GLES3/**
|
||||
linkerOpts = -lGLESv3
|
||||
@@ -1,4 +0,0 @@
|
||||
depends = posix
|
||||
package = platform.glescommon
|
||||
headers = KHR/khrplatform.h
|
||||
headerFilter = KHR/**
|
||||
@@ -1,14 +0,0 @@
|
||||
depends = posix
|
||||
package = platform.linux
|
||||
headers = byteswap.h elf.h endian.h features.h lastlog.h link.h \
|
||||
malloc.h mntent.h nsswitch.h pathconf.h termio.h thread_db.h \
|
||||
uchar.h util.h \
|
||||
sys/epoll.h sys/inotify.h sys/klog.h sys/sendfile.h \
|
||||
sys/sysconf.h sys/sysinfo.h sys/utime.h \
|
||||
net/if_ether.h net/if_packet.h netinet/ether.h netinet/in6.h netpacket/packet.h
|
||||
|
||||
headers.android_arm32 = time64.h
|
||||
|
||||
headerFilter = **
|
||||
|
||||
linkerOpts = -ldl
|
||||
@@ -1,6 +0,0 @@
|
||||
depends = android posix
|
||||
package = platform.media
|
||||
headers = media/NdkMediaCodec.h media/NdkMediaCrypto.h media/NdkMediaDrm.h media/NdkMediaError.h \
|
||||
media/NdkMediaExtractor.h media/NdkMediaFormat.h media/NdkMediaMuxer.h
|
||||
headerFilter = media/**
|
||||
linkerOpts = -lmediandk
|
||||
@@ -1,5 +0,0 @@
|
||||
depends = posix
|
||||
package = platform.omxal
|
||||
headers = OMXAL/OpenMAXAL.h OMXAL/OpenMAXAL_Android.h OMXAL/OpenMAXAL_Platform.h
|
||||
headerFilter = OMXAL/**
|
||||
linkerOpts = -lOpenMAXAL
|
||||
@@ -1,36 +0,0 @@
|
||||
depends =
|
||||
package = platform.posix
|
||||
headers = alloca.h ar.h assert.h complex.h dirent.h dlfcn.h err.h errno.h fcntl.h \
|
||||
fenv.h fnmatch.h fts.h ftw.h getopt.h grp.h inttypes.h libgen.h limits.h \
|
||||
locale.h math.h memory.h netdb.h paths.h poll.h \
|
||||
pthread.h pwd.h regex.h resolv.h sched.h search.h semaphore.h setjmp.h sgtty.h signal.h \
|
||||
stdatomic.h stdint.h stdio.h stdlib.h string.h strings.h syslog.h termios.h \
|
||||
time.h ucontext.h unistd.h utime.h utmp.h wchar.h wctype.h xlocale.h \
|
||||
net/ethernet.h net/if.h net/if_arp.h net/route.h \
|
||||
netinet/icmp6.h netinet/if_ether.h netinet/in.h netinet/in_systm.h \
|
||||
netinet/ip.h netinet/ip6.h netinet/ip_icmp.h netinet/tcp.h netinet/udp.h \
|
||||
sys/ioctl.h sys/ipc.h sys/mman.h sys/poll.h sys/ptrace.h \
|
||||
sys/queue.h sys/select.h sys/shm.h sys/stat.h \
|
||||
sys/syslimits.h sys/time.h sys/times.h sys/utsname.h sys/wait.h
|
||||
|
||||
linkerOpts = -ldl
|
||||
|
||||
---
|
||||
// cinterop -target android_arm32 -def klib/src/platform/android/posix.def -o platform.posix.klib
|
||||
|
||||
// Wrapper to access errno variable.
|
||||
static int posix_errno() {
|
||||
return errno;
|
||||
}
|
||||
|
||||
// Wrapper to access h_errno variable.
|
||||
static int posix_h_errno() {
|
||||
return h_errno;
|
||||
}
|
||||
|
||||
static int init_sockets() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void deinit_sockets() {
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
depends = posix
|
||||
package = platform.sles
|
||||
headers = SLES//OpenSLES.h SLES/OpenSLES_Android.h SLES/OpenSLES_AndroidConfiguration.h \
|
||||
SLES/OpenSLES_AndroidMetadata.h SLES/OpenSLES_Platform.h
|
||||
headerFilter = SLES/**
|
||||
linkerOpts = -lOpenSLES
|
||||
@@ -1,5 +0,0 @@
|
||||
depends = posix
|
||||
package = platform.zlib
|
||||
headers = zconf.h zlib.h
|
||||
headerFilter = **
|
||||
linkerOpts = -lz
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AudioToolbox CFNetwork CoreAudio CoreFoundation CoreGraphics CoreMIDI CoreMedia CoreVideo EAGL Foundation IOSurface ImageIO MediaToolbox Metal OpenGLESCommon QuartzCore Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.AVFoundation
|
||||
headers = AVFoundation/AVFoundation.h AVFoundation/AVFAudio.h AVFoundation/AVAudioBuffer.h
|
||||
|
||||
headerFilter = AVFoundation/** AVFAudio/**
|
||||
|
||||
compilerOpts = -framework AVFoundation
|
||||
linkerOpts = -framework AVFoundation
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AVFoundation AudioToolbox CFNetwork CoreAudio CoreFoundation CoreGraphics CoreImage CoreMIDI CoreMedia CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO MediaToolbox Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.AVKit
|
||||
headers = AVKit/AVKit.h
|
||||
|
||||
headerFilter = AVKit/**
|
||||
|
||||
compilerOpts = -framework AVKit
|
||||
linkerOpts = -framework AVKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CoreFoundation CoreGraphics CoreVideo IOSurface darwin posix
|
||||
language = Objective-C
|
||||
package = platform.Accelerate
|
||||
headers = Accelerate/Accelerate.h
|
||||
|
||||
headerFilter = Accelerate/** vecLib/** **/vecLib.h vImage/**
|
||||
|
||||
compilerOpts = -framework Accelerate
|
||||
linkerOpts = -framework Accelerate
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.Accounts
|
||||
headers = Accounts/Accounts.h
|
||||
|
||||
headerFilter = Accounts/**
|
||||
|
||||
compilerOpts = -framework Accounts
|
||||
linkerOpts = -framework Accounts
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.AdSupport
|
||||
headers = AdSupport/AdSupport.h
|
||||
|
||||
headerFilter = AdSupport/**
|
||||
|
||||
compilerOpts = -framework AdSupport
|
||||
linkerOpts = -framework AdSupport
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CoreFoundation darwin posix
|
||||
language = Objective-C
|
||||
package = platform.AddressBook
|
||||
headers = AddressBook/AddressBook.h
|
||||
|
||||
headerFilter = AddressBook/**
|
||||
|
||||
compilerOpts = -framework AddressBook
|
||||
linkerOpts = -framework AddressBook
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AddressBook CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.AddressBookUI
|
||||
headers = AddressBookUI/AddressBookUI.h
|
||||
|
||||
headerFilter = AddressBookUI/**
|
||||
|
||||
compilerOpts = -framework AddressBookUI
|
||||
linkerOpts = -framework AddressBookUI
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.AssetsLibrary
|
||||
headers = AssetsLibrary/AssetsLibrary.h
|
||||
|
||||
headerFilter = AssetsLibrary/**
|
||||
|
||||
compilerOpts = -framework AssetsLibrary
|
||||
linkerOpts = -framework AssetsLibrary
|
||||
@@ -1,12 +0,0 @@
|
||||
depends = CFNetwork CoreAudio CoreFoundation CoreMIDI Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.AudioToolbox
|
||||
headers = AudioToolbox/AudioToolbox.h \
|
||||
AudioUnit/AUAudioUnit.h AudioUnit/AUComponent.h AudioUnit/AudioComponent.h \
|
||||
AudioUnit/AudioUnit.h AudioUnit/AudioUnitProperties.h AudioUnit/AUAudioUnitImplementation.h \
|
||||
AudioUnit/AUParameters.h AudioUnit/AudioOutputUnit.h AudioUnit/AudioUnitParameters.h AudioUnit/MusicDevice.h
|
||||
|
||||
headerFilter = AudioToolbox/** AudioUnit/**
|
||||
|
||||
compilerOpts = -framework AudioToolbox
|
||||
linkerOpts = -framework AudioToolbox
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CoreFoundation darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CFNetwork
|
||||
headers = CFNetwork/CFNetwork.h
|
||||
|
||||
headerFilter = CFNetwork/**
|
||||
|
||||
compilerOpts = -framework CFNetwork
|
||||
linkerOpts = -framework CFNetwork
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CallKit
|
||||
headers = CallKit/CallKit.h
|
||||
|
||||
headerFilter = CallKit/**
|
||||
|
||||
compilerOpts = -framework CallKit
|
||||
linkerOpts = -framework CallKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork Contacts CoreFoundation CoreLocation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CloudKit
|
||||
headers = CloudKit/CloudKit.h
|
||||
|
||||
headerFilter = CloudKit/**
|
||||
|
||||
compilerOpts = -framework CloudKit
|
||||
linkerOpts = -framework CloudKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.Contacts
|
||||
headers = Contacts/Contacts.h
|
||||
|
||||
headerFilter = Contacts/**
|
||||
|
||||
compilerOpts = -framework Contacts
|
||||
linkerOpts = -framework Contacts
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork Contacts CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.ContactsUI
|
||||
headers = ContactsUI/ContactsUI.h
|
||||
|
||||
headerFilter = ContactsUI/**
|
||||
|
||||
compilerOpts = -framework ContactsUI
|
||||
linkerOpts = -framework ContactsUI
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CoreFoundation darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreAudio
|
||||
headers = CoreAudio/CoreAudioTypes.h
|
||||
|
||||
headerFilter = CoreAudio/**
|
||||
|
||||
compilerOpts = -framework CoreAudio
|
||||
linkerOpts = -framework CoreAudio
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AudioToolbox CFNetwork CoreAudio CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreAudioKit
|
||||
headers = CoreAudioKit/CoreAudioKit.h
|
||||
|
||||
headerFilter = CoreAudioKit/**
|
||||
|
||||
compilerOpts = -framework CoreAudioKit
|
||||
linkerOpts = -framework CoreAudioKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreBluetooth
|
||||
headers = CoreBluetooth/CoreBluetooth.h
|
||||
|
||||
headerFilter = CoreBluetooth/**
|
||||
|
||||
compilerOpts = -framework CoreBluetooth
|
||||
linkerOpts = -framework CoreBluetooth
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreData
|
||||
headers = CoreData/CoreData.h
|
||||
|
||||
headerFilter = CoreData/**
|
||||
|
||||
compilerOpts = -framework CoreData
|
||||
linkerOpts = -framework CoreData
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreFoundation
|
||||
headers = CoreFoundation/CoreFoundation.h CoreFoundation/CFPlugIn.h CoreFoundation/CFPlugInCOM.h
|
||||
|
||||
headerFilter = CoreFoundation/**
|
||||
|
||||
compilerOpts = -framework CoreFoundation
|
||||
linkerOpts = -framework CoreFoundation
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CoreFoundation darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreGraphics
|
||||
headers = CoreGraphics/CoreGraphics.h
|
||||
|
||||
headerFilter = CoreGraphics/**
|
||||
|
||||
compilerOpts = -framework CoreGraphics
|
||||
linkerOpts = -framework CoreGraphics
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreVideo EAGL Foundation IOSurface ImageIO Metal OpenGLESCommon Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreImage
|
||||
headers = CoreImage/CoreImage.h
|
||||
|
||||
headerFilter = CoreImage/**
|
||||
|
||||
compilerOpts = -framework CoreImage
|
||||
linkerOpts = -framework CoreImage
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreLocation
|
||||
headers = CoreLocation/CoreLocation.h
|
||||
|
||||
headerFilter = CoreLocation/**
|
||||
|
||||
compilerOpts = -framework CoreLocation
|
||||
linkerOpts = -framework CoreLocation
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreMIDI
|
||||
headers = CoreMIDI/CoreMIDI.h
|
||||
|
||||
headerFilter = CoreMIDI/**
|
||||
|
||||
compilerOpts = -framework CoreMIDI
|
||||
linkerOpts = -framework CoreMIDI
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AudioToolbox CFNetwork CoreAudio CoreFoundation CoreGraphics CoreVideo Foundation IOSurface Metal OpenGLESCommon Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreMedia
|
||||
headers = CoreMedia/CoreMedia.h
|
||||
|
||||
headerFilter = CoreMedia/**
|
||||
|
||||
compilerOpts = -framework CoreMedia
|
||||
linkerOpts = -framework CoreMedia
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreMotion
|
||||
headers = CoreMotion/CoreMotion.h
|
||||
|
||||
headerFilter = CoreMotion/**
|
||||
|
||||
compilerOpts = -framework CoreMotion
|
||||
linkerOpts = -framework CoreMotion
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreSpotlight
|
||||
headers = CoreSpotlight/CoreSpotlight.h
|
||||
|
||||
headerFilter = CoreSpotlight/**
|
||||
|
||||
compilerOpts = -framework CoreSpotlight
|
||||
linkerOpts = -framework CoreSpotlight
|
||||
@@ -1,11 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreTelephony
|
||||
headers = CoreTelephony/CTCall.h CoreTelephony/CTCallCenter.h CoreTelephony/CTCarrier.h \
|
||||
CoreTelephony/CTCellularData.h CoreTelephony/CTSubscriber.h CoreTelephony/CTSubscriberInfo.h \
|
||||
CoreTelephony/CTTelephonyNetworkInfo.h CoreTelephony/CoreTelephonyDefines.h
|
||||
|
||||
headerFilter = CoreTelephony/**
|
||||
|
||||
compilerOpts = -framework CoreTelephony
|
||||
linkerOpts = -framework CoreTelephony
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CoreFoundation CoreGraphics darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreText
|
||||
headers = CoreText/CoreText.h
|
||||
|
||||
headerFilter = CoreText/**
|
||||
|
||||
compilerOpts = -framework CoreText
|
||||
linkerOpts = -framework CoreText
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics Foundation IOSurface Metal OpenGLESCommon Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.CoreVideo
|
||||
headers = CoreVideo/CoreVideo.h
|
||||
|
||||
headerFilter = CoreVideo/**
|
||||
|
||||
compilerOpts = -framework CoreVideo
|
||||
linkerOpts = -framework CoreVideo
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.EAGL
|
||||
headers = OpenGLES/EAGL.h OpenGLES/EAGLDrawable.h
|
||||
|
||||
headerFilter = OpenGLES/**
|
||||
|
||||
compilerOpts = -framework OpenGLES
|
||||
linkerOpts = -framework OpenGLES
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AddressBook CFNetwork CoreFoundation CoreGraphics CoreLocation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.EventKit
|
||||
headers = EventKit/EventKit.h
|
||||
|
||||
headerFilter = EventKit/**
|
||||
|
||||
compilerOpts = -framework EventKit
|
||||
linkerOpts = -framework EventKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AddressBook CFNetwork CoreFoundation CoreGraphics CoreImage CoreLocation CoreText CoreVideo EAGL EventKit FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.EventKitUI
|
||||
headers = EventKitUI/EventKitUI.h
|
||||
|
||||
headerFilter = EventKitUI/**
|
||||
|
||||
compilerOpts = -framework EventKitUI
|
||||
linkerOpts = -framework EventKitUI
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.ExternalAccessory
|
||||
headers = ExternalAccessory/ExternalAccessory.h
|
||||
|
||||
headerFilter = ExternalAccessory/**
|
||||
|
||||
compilerOpts = -framework ExternalAccessory
|
||||
linkerOpts = -framework ExternalAccessory
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.FileProvider
|
||||
headers = FileProvider/FileProvider.h
|
||||
|
||||
headerFilter = FileProvider/**
|
||||
|
||||
compilerOpts = -framework FileProvider
|
||||
linkerOpts = -framework FileProvider
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.Foundation
|
||||
headers = Foundation/Foundation.h
|
||||
|
||||
headerFilter = Foundation/**
|
||||
|
||||
compilerOpts = -framework Foundation
|
||||
linkerOpts = -framework Foundation
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal ModelIO OpenGLES2 OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.GLKit
|
||||
headers = GLKit/GLKit.h
|
||||
|
||||
headerFilter = GLKit/**
|
||||
|
||||
compilerOpts = -framework GLKit
|
||||
linkerOpts = -framework GLKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CoreFoundation darwin posix
|
||||
language = Objective-C
|
||||
package = platform.GSS
|
||||
headers = GSS/GSS.h
|
||||
|
||||
headerFilter = GSS/**
|
||||
|
||||
compilerOpts = -framework GSS
|
||||
linkerOpts = -framework GSS
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.GameController
|
||||
headers = GameController/GameController.h
|
||||
|
||||
headerFilter = GameController/**
|
||||
|
||||
compilerOpts = -framework GameController
|
||||
linkerOpts = -framework GameController
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AVFoundation AudioToolbox CFNetwork CoreAudio CoreFoundation CoreGraphics CoreImage CoreMIDI CoreMedia CoreText CoreVideo EAGL FileProvider Foundation GLKit GameController GameplayKit IOSurface ImageIO MediaToolbox Metal MetalKit ModelIO OpenGLESCommon QuartzCore ReplayKit SceneKit Security SpriteKit UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.GameKit
|
||||
headers = GameKit/GameKit.h
|
||||
|
||||
headerFilter = GameKit/**
|
||||
|
||||
compilerOpts = -framework GameKit
|
||||
linkerOpts = -framework GameKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation GLKit IOSurface ImageIO Metal OpenGLESCommon QuartzCore SceneKit Security SpriteKit UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.GameplayKit
|
||||
headers = GameplayKit/GameplayKit.h
|
||||
|
||||
headerFilter = GameplayKit/**
|
||||
|
||||
compilerOpts = -framework GameplayKit
|
||||
linkerOpts = -framework GameplayKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.HealthKit
|
||||
headers = HealthKit/HealthKit.h
|
||||
|
||||
headerFilter = HealthKit/**
|
||||
|
||||
compilerOpts = -framework HealthKit
|
||||
linkerOpts = -framework HealthKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation HealthKit IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.HealthKitUI
|
||||
headers = HealthKitUI/HealthKitUI.h
|
||||
|
||||
headerFilter = HealthKitUI/**
|
||||
|
||||
compilerOpts = -framework HealthKitUI
|
||||
linkerOpts = -framework HealthKitUI
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.HomeKit
|
||||
headers = HomeKit/HomeKit.h
|
||||
|
||||
headerFilter = HomeKit/**
|
||||
|
||||
compilerOpts = -framework HomeKit
|
||||
linkerOpts = -framework HomeKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.IOSurface
|
||||
headers.ios = IOSurface/IOSurfaceRef.h IOSurface/IOSurfaceObjC.h
|
||||
|
||||
headerFilter = IOSurface/**
|
||||
|
||||
compilerOpts = -framework IOSurface
|
||||
linkerOpts = -framework IOSurface
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CoreFoundation CoreGraphics darwin posix
|
||||
language = Objective-C
|
||||
package = platform.ImageIO
|
||||
headers = ImageIO/ImageIO.h
|
||||
|
||||
headerFilter = ImageIO/**
|
||||
|
||||
compilerOpts = -framework ImageIO
|
||||
linkerOpts = -framework ImageIO
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork Contacts CoreFoundation CoreLocation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.Intents
|
||||
headers = Intents/Intents.h
|
||||
|
||||
headerFilter = Intents/**
|
||||
|
||||
compilerOpts = -framework Intents
|
||||
linkerOpts = -framework Intents
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Intents Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.IntentsUI
|
||||
headers = IntentsUI/IntentsUI.h
|
||||
|
||||
headerFilter = IntentsUI/**
|
||||
|
||||
compilerOpts = -framework IntentsUI
|
||||
linkerOpts = -framework IntentsUI
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.JavaScriptCore
|
||||
headers = JavaScriptCore/JavaScriptCore.h
|
||||
|
||||
headerFilter = JavaScriptCore/**
|
||||
|
||||
compilerOpts = -framework JavaScriptCore
|
||||
linkerOpts = -framework JavaScriptCore
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.LocalAuthentication
|
||||
headers = LocalAuthentication/LocalAuthentication.h
|
||||
|
||||
headerFilter = LocalAuthentication/**
|
||||
|
||||
compilerOpts = -framework LocalAuthentication
|
||||
linkerOpts = -framework LocalAuthentication
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreLocation CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.MapKit
|
||||
headers = MapKit/MapKit.h
|
||||
|
||||
headerFilter = MapKit/**
|
||||
|
||||
compilerOpts = -framework MapKit
|
||||
linkerOpts = -framework MapKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreText EAGL Foundation Metal QuartzCore Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.MediaAccessibility
|
||||
headers = MediaAccessibility/MediaAccessibility.h
|
||||
|
||||
headerFilter = MediaAccessibility/**
|
||||
|
||||
compilerOpts = -framework MediaAccessibility
|
||||
linkerOpts = -framework MediaAccessibility
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AVFoundation CFNetwork CoreFoundation CoreGraphics CoreImage CoreMedia CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.MediaPlayer
|
||||
headers = MediaPlayer/MediaPlayer.h
|
||||
|
||||
headerFilter = MediaPlayer/**
|
||||
|
||||
compilerOpts = -framework MediaPlayer
|
||||
linkerOpts = -framework MediaPlayer
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AudioToolbox CFNetwork CoreAudio CoreFoundation CoreGraphics CoreMIDI CoreMedia CoreVideo Foundation IOSurface Metal OpenGLESCommon Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.MediaToolbox
|
||||
headers = MediaToolbox/MediaToolbox.h
|
||||
|
||||
headerFilter = MediaToolbox/**
|
||||
|
||||
compilerOpts = -framework MediaToolbox
|
||||
linkerOpts = -framework MediaToolbox
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.MessageUI
|
||||
headers = MessageUI/MessageUI.h
|
||||
|
||||
headerFilter = MessageUI/**
|
||||
|
||||
compilerOpts = -framework MessageUI
|
||||
linkerOpts = -framework MessageUI
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.Messages
|
||||
headers = Messages/Messages.h
|
||||
|
||||
headerFilter = Messages/**
|
||||
|
||||
compilerOpts = -framework Messages
|
||||
linkerOpts = -framework Messages
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation IOSurface Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.Metal
|
||||
headers = Metal/Metal.h
|
||||
|
||||
headerFilter = Metal/**
|
||||
|
||||
compilerOpts = -framework Metal
|
||||
linkerOpts = -framework Metal
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal ModelIO OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.MetalKit
|
||||
headers = MetalKit/MetalKit.h
|
||||
|
||||
headerFilter = MetalKit/**
|
||||
|
||||
compilerOpts = -framework MetalKit
|
||||
linkerOpts = -framework MetalKit
|
||||
@@ -1,8 +0,0 @@
|
||||
language = Objective-C
|
||||
package = platform.MetalPerformanceShaders
|
||||
headers = MetalPerformanceShaders/MetalPerformanceShaders.h
|
||||
|
||||
headerFilter = MetalPerformanceShaders/**
|
||||
|
||||
compilerOpts = -framework MetalPerformanceShaders
|
||||
linkerOpts = -framework MetalPerformanceShaders
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CoreFoundation darwin posix
|
||||
language = Objective-C
|
||||
package = platform.MobileCoreServices
|
||||
headers = MobileCoreServices/MobileCoreServices.h
|
||||
|
||||
headerFilter = MobileCoreServices/**
|
||||
|
||||
compilerOpts = -framework MobileCoreServices
|
||||
linkerOpts = -framework MobileCoreServices
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.ModelIO
|
||||
headers = ModelIO/ModelIO.h
|
||||
|
||||
headerFilter = ModelIO/**
|
||||
|
||||
compilerOpts = -framework ModelIO
|
||||
linkerOpts = -framework ModelIO
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.MultipeerConnectivity
|
||||
headers = MultipeerConnectivity/MultipeerConnectivity.h
|
||||
|
||||
headerFilter = MultipeerConnectivity/**
|
||||
|
||||
compilerOpts = -framework MultipeerConnectivity
|
||||
linkerOpts = -framework MultipeerConnectivity
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.NetworkExtension
|
||||
headers = NetworkExtension/NetworkExtension.h
|
||||
|
||||
headerFilter = NetworkExtension/**
|
||||
|
||||
compilerOpts = -framework NetworkExtension
|
||||
linkerOpts = -framework NetworkExtension
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.NewsstandKit
|
||||
headers = NewsstandKit/NewsstandKit.h
|
||||
|
||||
headerFilter = NewsstandKit/**
|
||||
|
||||
compilerOpts = -framework NewsstandKit
|
||||
linkerOpts = -framework NewsstandKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.NotificationCenter
|
||||
headers = NotificationCenter/NotificationCenter.h
|
||||
|
||||
headerFilter = NotificationCenter/**
|
||||
|
||||
compilerOpts = -framework NotificationCenter
|
||||
linkerOpts = -framework NotificationCenter
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = posix
|
||||
language = Objective-C
|
||||
package = platform.OpenAL
|
||||
headers = OpenAL/OpenAL.h
|
||||
|
||||
headerFilter = OpenAL/**
|
||||
|
||||
compilerOpts = -framework OpenAL
|
||||
linkerOpts = -framework OpenAL
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = OpenGLESCommon posix
|
||||
language = Objective-C
|
||||
package = platform.gles
|
||||
headers = OpenGLES/ES1/gl.h OpenGLES/ES1/glext.h
|
||||
|
||||
headerFilter = OpenGLES/ES1/**
|
||||
|
||||
compilerOpts = -framework OpenGLES
|
||||
linkerOpts = -framework OpenGLES
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = OpenGLESCommon posix
|
||||
language = Objective-C
|
||||
package = platform.gles2
|
||||
headers = OpenGLES/ES2/gl.h OpenGLES/ES2/glext.h
|
||||
|
||||
headerFilter = OpenGLES/ES2/**
|
||||
|
||||
compilerOpts = -framework OpenGLES
|
||||
linkerOpts = -framework OpenGLES
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = OpenGLESCommon posix
|
||||
language = Objective-C
|
||||
package = platform.gles3
|
||||
headers = OpenGLES/ES3/gl.h OpenGLES/ES3/glext.h
|
||||
|
||||
headerFilter = OpenGLES/ES3/**
|
||||
|
||||
compilerOpts = -framework OpenGLES
|
||||
linkerOpts = -framework OpenGLES
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = posix
|
||||
language = Objective-C
|
||||
package = platform.glescommon
|
||||
headers = OpenGLES/gltypes.h
|
||||
|
||||
headerFilter = OpenGLES/gltypes.h
|
||||
|
||||
compilerOpts = -framework OpenGLES
|
||||
linkerOpts = -framework OpenGLES
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AddressBook CFNetwork Contacts CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.PassKit
|
||||
headers = PassKit/PassKit.h
|
||||
|
||||
headerFilter = PassKit/**
|
||||
|
||||
compilerOpts = -framework PassKit
|
||||
linkerOpts = -framework PassKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AVFoundation AudioToolbox CFNetwork CoreAudio CoreFoundation CoreGraphics CoreImage CoreLocation CoreMIDI CoreMedia CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO MediaToolbox Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.Photos
|
||||
headers = Photos/Photos.h
|
||||
|
||||
headerFilter = Photos/**
|
||||
|
||||
compilerOpts = -framework Photos
|
||||
linkerOpts = -framework Photos
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AVFoundation AudioToolbox CFNetwork CoreAudio CoreFoundation CoreGraphics CoreImage CoreLocation CoreMIDI CoreMedia CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO MediaToolbox Metal OpenGLESCommon Photos QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.PhotosUI
|
||||
headers = PhotosUI/PhotosUI.h
|
||||
|
||||
headerFilter = PhotosUI/**
|
||||
|
||||
compilerOpts = -framework PhotosUI
|
||||
linkerOpts = -framework PhotosUI
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.PushKit
|
||||
headers = PushKit/PushKit.h
|
||||
|
||||
headerFilter = PushKit/**
|
||||
|
||||
compilerOpts = -framework PushKit
|
||||
linkerOpts = -framework PushKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics EAGL Foundation Metal Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.QuartzCore
|
||||
headers = QuartzCore/QuartzCore.h
|
||||
|
||||
headerFilter = QuartzCore/**
|
||||
|
||||
compilerOpts = -framework QuartzCore
|
||||
linkerOpts = -framework QuartzCore
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.QuickLook
|
||||
headers = QuickLook/QuickLook.h
|
||||
|
||||
headerFilter = QuickLook/**
|
||||
|
||||
compilerOpts = -framework QuickLook
|
||||
linkerOpts = -framework QuickLook
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AVFoundation AudioToolbox CFNetwork CoreAudio CoreFoundation CoreGraphics CoreImage CoreMIDI CoreMedia CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO MediaToolbox Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.ReplayKit
|
||||
headers = ReplayKit/ReplayKit.h
|
||||
|
||||
headerFilter = ReplayKit/**
|
||||
|
||||
compilerOpts = -framework ReplayKit
|
||||
linkerOpts = -framework ReplayKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.SafariServices
|
||||
headers = SafariServices/SafariServices.h
|
||||
|
||||
headerFilter = SafariServices/**
|
||||
|
||||
compilerOpts = -framework SafariServices
|
||||
linkerOpts = -framework SafariServices
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation GLKit IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.SceneKit
|
||||
headers = SceneKit/SceneKit.h
|
||||
|
||||
headerFilter = SceneKit/**
|
||||
|
||||
compilerOpts = -framework SceneKit
|
||||
linkerOpts = -framework SceneKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CoreFoundation darwin posix
|
||||
language = Objective-C
|
||||
package = platform.Security
|
||||
headers = Security/Security.h Security/SecureTransport.h
|
||||
|
||||
headerFilter = Security/**
|
||||
|
||||
compilerOpts = -framework Security
|
||||
linkerOpts = -framework Security
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.Social
|
||||
headers = Social/Social.h
|
||||
|
||||
headerFilter = Social/**
|
||||
|
||||
compilerOpts = -framework Social
|
||||
linkerOpts = -framework Social
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = AVFoundation AudioToolbox CFNetwork CoreAudio CoreFoundation CoreGraphics CoreMIDI CoreMedia CoreVideo EAGL Foundation IOSurface ImageIO MediaToolbox Metal OpenGLESCommon QuartzCore Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.Speech
|
||||
headers = Speech/Speech.h
|
||||
|
||||
headerFilter = Speech/**
|
||||
|
||||
compilerOpts = -framework Speech
|
||||
linkerOpts = -framework Speech
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation GLKit IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.SpriteKit
|
||||
headers = SpriteKit/SpriteKit.h
|
||||
|
||||
headerFilter = SpriteKit/**
|
||||
|
||||
compilerOpts = -framework SpriteKit
|
||||
linkerOpts = -framework SpriteKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.StoreKit
|
||||
headers = StoreKit/StoreKit.h
|
||||
|
||||
headerFilter = StoreKit/**
|
||||
|
||||
compilerOpts = -framework StoreKit
|
||||
linkerOpts = -framework StoreKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CoreFoundation darwin posix
|
||||
language = Objective-C
|
||||
package = platform.SystemConfiguration
|
||||
headers = SystemConfiguration/SystemConfiguration.h
|
||||
|
||||
headerFilter = SystemConfiguration/**
|
||||
|
||||
compilerOpts = -framework SystemConfiguration
|
||||
linkerOpts = -framework SystemConfiguration
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security Social UIKit darwin posix
|
||||
language = Objective-C
|
||||
package = platform.Twitter
|
||||
headers = Twitter/Twitter.h
|
||||
|
||||
headerFilter = Twitter/**
|
||||
|
||||
compilerOpts = -framework Twitter
|
||||
linkerOpts = -framework Twitter
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation CoreGraphics CoreImage CoreText CoreVideo EAGL FileProvider Foundation IOSurface ImageIO Metal OpenGLESCommon QuartzCore Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.UIKit
|
||||
headers = UIKit/UIKit.h
|
||||
|
||||
headerFilter = UIKit/** DocumentManager/**
|
||||
|
||||
compilerOpts = -framework UIKit
|
||||
linkerOpts = -framework UIKit
|
||||
@@ -1,9 +0,0 @@
|
||||
depends = CFNetwork CoreFoundation Foundation Security darwin posix
|
||||
language = Objective-C
|
||||
package = platform.UserNotifications
|
||||
headers = UserNotifications/UserNotifications.h
|
||||
|
||||
headerFilter = UserNotifications/**
|
||||
|
||||
compilerOpts = -framework UserNotifications
|
||||
linkerOpts = -framework UserNotifications
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user