this repo has no description
at fixPythonPipStalling 41 lines 952 B view raw
1project(Speech) 2 3set(DYLIB_COMPAT_VERSION "1.0.0") 4set(DYLIB_CURRENT_VERSION "1.0.0") 5set(FRAMEWORK_VERSION "A") 6 7remove_sdk_framework(Speech 8) 9 10generate_sdk_framework(Speech 11 VERSION ${FRAMEWORK_VERSION} 12 HEADER "include/Speech" 13) 14 15add_framework(Speech 16 FAT 17 CURRENT_VERSION 18 VERSION ${FRAMEWORK_VERSION} 19 20 SOURCES 21 src/Speech.m 22 src/SFAcousticFeature.m 23 src/SFVoiceAnalytics.m 24 src/_SFSearchResult.m 25 src/SFSpeechRecognitionTask.m 26 src/_SFSpeechRecognitionBlockTask.m 27 src/_SFSpeechRecognitionDelegateTask.m 28 src/SFSpeechRecognitionResult.m 29 src/SFSpeechRecognizer.m 30 src/SFTranscriptionSegment.m 31 src/_SFSearchRequest.m 32 src/SFSpeechRecognitionRequest.m 33 src/SFSpeechURLRecognitionRequest.m 34 src/SFSpeechAudioBufferRecognitionRequest.m 35 src/SFTranscription.m 36 37 DEPENDENCIES 38 system 39 objc 40 Foundation 41)