this repo has no description
at fixPythonPipStalling 96 lines 3.2 kB view raw
1project(IOBluetooth) 2 3remove_sdk_framework(IOBluetooth) 4 5set(DYLIB_COMPAT_VERSION "1.0.0") 6set(DYLIB_CURRENT_VERSION "1.0.0") 7 8set(FRAMEWORK_VERSION "A") 9 10generate_sdk_framework(IOBluetooth 11 VERSION ${FRAMEWORK_VERSION} 12 HEADER "include/IOBluetooth" 13) 14 15add_framework(IOBluetooth 16 FAT 17 CURRENT_VERSION 18 VERSION ${FRAMEWORK_VERSION} 19 20 SOURCES 21 src/IOBluetooth.m 22 src/IOBluetoothDeviceExpansion.m 23 src/SDPQueryCallbackDispatcher.m 24 src/IOBluetoothDevice.m 25 src/BTClient.m 26 src/BluetoothDeviceManager.m 27 src/IOBluetoothL2CAPChannelExpansion.m 28 src/IOBluetoothL2CAPChannel.m 29 src/IOBluetoothRFCOMMChannel.m 30 src/IOBluetoothRFCOMMConnection.m 31 src/IOBluetoothSDPServiceRecord.m 32 src/IOBluetoothSerialPort.m 33 src/IOBluetoothSerialPortManager.m 34 src/NotificationInfo.m 35 src/IOBluetoothNotification.m 36 src/IOBluetoothOBEXSession.m 37 src/IOBluetoothSDPDataElement.m 38 src/IOBluetoothSDPServiceAttribute.m 39 src/IOBluetoothSDPUUID.m 40 src/OBEXSession.m 41 src/IOBluetoothUserNotification.m 42 src/IOBluetoothConcreteUserNotification.m 43 src/IOBluetoothNSUserNotification.m 44 src/IOBluetoothNSObjCUserNotification.m 45 src/IOBluetoothNSCUserNotification.m 46 src/IOBluetoothLocalSDPServiceRecord.m 47 src/IOBluetoothObject.m 48 src/OBEXFilePut.m 49 src/BluetoothFileReference.m 50 src/OBEXFileTransferServices.m 51 src/OBEXFileAction.m 52 src/OBEXFileGet.m 53 src/IOBluetoothCloudServerClient.m 54 src/IOBluetoothDaemonNSXPCClient.m 55 src/IOBluetoothTransferProgress.m 56 src/AppleBluetoothHIDDeviceGen2.m 57 src/BluetoothHIDDevice.m 58 src/BluetoothHIDDeviceController.m 59 src/IOBluetoothDeviceInfoGatherer.m 60 src/AppleBluetoothHIDDevice.m 61 src/HardcopyCableReplacement.m 62 src/IOBluetoothHardcopyCableReplacement.m 63 src/RegistryObjectNotificationWrapper.m 64 src/IORegistryObjectNotifier.m 65 src/SystemPowerNotifier.m 66 src/FrameworksAnalyticsPackager.m 67 src/IOBluetoothAutomaticDeviceSetup.m 68 src/IOBluetoothDeviceInquiryExpansion.m 69 src/IOBluetoothDeviceInquiry.m 70 src/IOBluetoothDeviceInquiryCSupportObject.m 71 src/IOBluetoothHandsFreeAudioGatewayExpansion.m 72 src/IOBluetoothHandsFreeAudioGateway.m 73 src/IOBluetoothHostControllerExpansion.m 74 src/IOBluetoothHostController.m 75 src/IOBluetoothDevicePairExpansion.m 76 src/IOBluetoothDevicePair.m 77 src/BroadcomHostController.m 78 src/CSRHostController.m 79 src/CSRBlueICEHostController.m 80 src/IOBluetoothPreferences.m 81 src/IOBluetoothHandsFreeDeviceExpansion.m 82 src/IOBluetoothHandsFreeDevice.m 83 src/IOBluetoothHandsFreeExpansion.m 84 src/IOBluetoothHandsFree.m 85 src/BNEPControl.m 86 src/BluetoothUIServer.m 87 src/AtherosHostController.m 88 src/ConnectionCompleteCallbackDispatcher.m 89 src/IOBluetoothAudioManager.m 90 src/IOBluetoothHeadsetAudioGateway.m 91 92 DEPENDENCIES 93 system 94 objc 95 Foundation 96)