this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at fixPythonPipStalling 34 lines 577 B view raw
1project(InternationalSupport) 2 3remove_sdk_framework(InternationalSupport 4 PRIVATE 5) 6 7set(DYLIB_COMPAT_VERSION "1.0.0") 8set(DYLIB_CURRENT_VERSION "69.1.0") 9 10set(FRAMEWORK_VERSION "A") 11 12generate_sdk_framework(InternationalSupport 13 PRIVATE 14 VERSION ${FRAMEWORK_VERSION} 15 HEADER "include/InternationalSupport" 16) 17 18 19add_framework(InternationalSupport 20 PRIVATE 21 FAT 22 CURRENT_VERSION 23 VERSION ${FRAMEWORK_VERSION} 24 25 SOURCES 26 src/ISUtilities.m 27 src/NSLocale+InternationalSupportExtensions.m 28 src/NSBundle+InternationalSupportExtensions.m 29 30 DEPENDENCIES 31 system 32 objc 33 Foundation 34)