CMakeLists.txt
1 project(LocalAuthentication) 2 3 remove_sdk_framework(LocalAuthentication) 4 5 add_compile_options( 6 -nostdinc 7 ) 8 9 include_directories( 10 ${CMAKE_CURRENT_SOURCE_DIR}/include 11 ) 12 13 set(DYLIB_COMPAT_VERSION "1.0.0") 14 set(DYLIB_CURRENT_VERSION "240.50.25") 15 16 set(FRAMEWORK_VERSION "A") 17 18 generate_sdk_framework(LocalAuthentication 19 VERSION ${FRAMEWORK_VERSION} 20 HEADER "include/LocalAuthentication" 21 ) 22 23 add_framework(LocalAuthentication 24 FAT 25 CURRENT_VERSION 26 VERSION ${FRAMEWORK_VERSION} 27 28 SOURCES 29 src/LACFSupport.c 30 src/stubs.c 31 32 DEPENDENCIES 33 system 34 )