this repo has no description
at fixPythonPipStalling 88 lines 2.5 kB view raw
1project(LoggingSupport) 2 3remove_sdk_framework(LoggingSupport 4 PRIVATE 5) 6 7set(DYLIB_COMPAT_VERSION "1.0.0") 8set(DYLIB_CURRENT_VERSION "906.220.1") 9 10set(FRAMEWORK_VERSION "A") 11 12generate_sdk_framework(LoggingSupport 13 VERSION ${FRAMEWORK_VERSION} 14 HEADER "include/LoggingSupport" 15 PRIVATE 16) 17 18add_framework(LoggingSupport 19 FAT 20 CURRENT_VERSION 21 PRIVATE 22 VERSION ${FRAMEWORK_VERSION} 23 24 SOURCES 25 src/LoggingSupport.m 26 src/LoggingSupport_OSLogCoder.m 27 src/OSLogEventProxy.m 28 src/OSLogEventDecomposedMessage.m 29 src/OSLogMessagePlaceholder.m 30 src/OSLogEventMessageArgument.m 31 src/OSLogEventBacktraceFrame.m 32 src/OSLogEventBacktrace.m 33 src/OSLogDevice.m 34 src/OSActivityStream.m 35 src/OSActivityCreateEvent.m 36 src/OSActivityTraceMessageEvent.m 37 src/OSActivityLogMessageEvent.m 38 src/OSActivitySignpostEvent.m 39 src/OSActivityUserActionEvent.m 40 src/OSActivityTransitionEvent.m 41 src/OSActivityStatedumpEvent.m 42 src/OSActivityTimesyncEvent.m 43 src/OSActivityLossEvent.m 44 src/OSActivityEvent.m 45 src/OSActivityEventMessage.m 46 src/OSLogEventLiveSource.m 47 src/_OSLogChunkStore.m 48 src/_OSLogChunkMemory.m 49 src/_OSLogChunkFile.m 50 src/_OSLogChunkFileReference.m 51 src/_OSLogIndexFile.m 52 src/_OSLogEnumeratorOversizeChunk.m 53 src/_OSLogChunkBuffer.m 54 src/_OSLogEnumeratorCatalogSubchunk.m 55 src/_OSLogEnumeratorCatalog.m 56 src/_OSLogTracepointBuffer.m 57 src/_OSLogIndexEnumerator.m 58 src/_OSLogIndex.m 59 src/_OSLogPredicateMapper.m 60 src/_OSLogLegacyPredicateMapper.m 61 src/OSLogPersistence.m 62 src/OSLogEventLiveStream.m 63 src/OSLogTermDumper.m 64 src/OSLogEventStreamBase.m 65 src/_OSLogCatalogFilter.m 66 src/_OSLogDirectoryReference.m 67 src/_OSLogCollectionReference.m 68 src/OSLogEventLiveStore.m 69 src/OSLogEventStream.m 70 src/OSLogEventStreamPosition.m 71 src/_OSLogVersioning.m 72 src/_OSLogSimplePredicate.m 73 src/_OSLogStreamFilter.m 74 src/OSLogEventSource.m 75 src/OSLogPreferencesManager.m 76 src/OSLogPreferencesProcess.m 77 src/OSLogPreferencesSubsystem.m 78 src/OSLogPreferencesCategory.m 79 src/_OSLogEventStoreTimeRef.m 80 src/_OSLogEventStoreMetadata.m 81 src/OSLogEventStore.m 82 src/OSLogEventLocalStore.m 83 84 DEPENDENCIES 85 system 86 objc 87 Foundation 88)