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 520 B view raw
1project(AppleSystemInfo) 2 3remove_sdk_framework(AppleSystemInfo 4 PRIVATE 5) 6 7add_compile_options( 8 -nostdinc 9) 10 11set(DYLIB_COMPAT_VERSION "1.0.0") 12set(DYLIB_CURRENT_VERSION "1.0.0") 13 14set(FRAMEWORK_VERSION "A") 15 16generate_sdk_framework(AppleSystemInfo 17 VERSION ${FRAMEWORK_VERSION} 18 HEADER "include/AppleSystemInfo" 19 PRIVATE 20) 21 22add_framework(AppleSystemInfo 23 FAT 24 CURRENT_VERSION 25 PRIVATE 26 VERSION ${FRAMEWORK_VERSION} 27 28 SOURCES 29 src/AppleSystemInfo.c 30 src/functions.c 31 DEPENDENCIES 32 system 33 CoreFoundation 34)