this repo has no description
1project(cache)
2
3set(DYLIB_INSTALL_NAME "/usr/lib/system/libcache.dylib")
4set(DYLIB_COMPAT_VERSION "1.0.0")
5set(DYLIB_CURRENT_VERSION "83.0.0")
6
7include_directories(include)
8
9add_circular(libcache FAT
10 SOURCES
11 src/cache.c
12 SIBLINGS
13 system_c
14 system_dyld
15 system_malloc
16 platform
17 system_kernel
18)
19set_target_properties(libcache PROPERTIES OUTPUT_NAME "cache")
20install(TARGETS libcache DESTINATION libexec/darling/usr/lib/system)