this repo has no description
1project(LocalAuthentication)
2
3remove_sdk_framework(LocalAuthentication)
4
5add_compile_options(
6 -nostdinc
7)
8
9include_directories(
10 ${CMAKE_CURRENT_SOURCE_DIR}/include
11)
12
13set(DYLIB_COMPAT_VERSION "1.0.0")
14set(DYLIB_CURRENT_VERSION "240.50.25")
15
16set(FRAMEWORK_VERSION "A")
17
18generate_sdk_framework(LocalAuthentication
19 VERSION ${FRAMEWORK_VERSION}
20 HEADER "include/LocalAuthentication"
21)
22
23add_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)