this repo has no description
1project(SystemConfiguration)
2
3remove_sdk_framework(SystemConfiguration)
4
5set(CMAKE_CXX_STANDARD 11)
6include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR})
7
8set(SystemConfiguration_SRCS
9 SCDynamicStoreCopySpecific.cpp
10 SCSchemaDefinitions.c
11 SCNetworkReachability.c
12 SCNetworkConnection.c
13 stubs.c
14)
15
16set(FRAMEWORK_VERSION "A")
17
18generate_sdk_framework(SystemConfiguration
19 VERSION ${FRAMEWORK_VERSION}
20 HEADER "include/SystemConfiguration"
21)
22
23add_framework(SystemConfiguration
24 FAT
25 CURRENT_VERSION
26 VERSION ${FRAMEWORK_VERSION}
27
28 SOURCES
29 ${SystemConfiguration_SRCS}
30
31 DEPENDENCIES
32 system
33 CoreFoundation
34 cxx
35)