this repo has no description
1project(AssetCacheServices)
2
3remove_sdk_framework(AssetCacheServices
4 PRIVATE
5)
6
7set(DYLIB_COMPAT_VERSION "1.0.0")
8set(DYLIB_CURRENT_VERSION "106.1.0")
9
10set(FRAMEWORK_VERSION "A")
11
12generate_sdk_framework(AssetCacheServices
13 VERSION ${FRAMEWORK_VERSION}
14 HEADER "include/AssetCacheServices"
15 PRIVATE
16)
17
18add_framework(AssetCacheServices
19 FAT
20 CURRENT_VERSION
21 PRIVATE
22 VERSION ${FRAMEWORK_VERSION}
23
24 SOURCES
25 src/AssetCacheServices.m
26 src/ACSURLSession.m
27 src/ACSURLSessionUploadTask.m
28 src/ACSURLSessionDataTask.m
29 src/ACSURLSessionTask.m
30 src/ACSURLSessionDownloadTask.m
31
32 DEPENDENCIES
33 system
34 objc
35 Foundation
36)