2022-12-07 02:58:48 +00:00
|
|
|
project(libinfo)
|
|
|
|
|
2023-07-26 17:27:31 +00:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2022-12-07 02:58:48 +00:00
|
|
|
|
|
|
|
if(CMAKE_SIZEOF_VOID_P EQUAL 4 OR CMAKE_INSTALL_LIBDIR STREQUAL "lib32")
|
|
|
|
set(BITS 32)
|
|
|
|
add_definitions(-DTARGET_CPU_X86=1)
|
|
|
|
else(CMAKE_SIZEOF_VOID_P EQUAL 4 OR CMAKE_INSTALL_LIBDIR STREQUAL "lib32")
|
|
|
|
set(BITS 64)
|
|
|
|
add_definitions(-DTARGET_CPU_X86_64=1)
|
|
|
|
endif(CMAKE_SIZEOF_VOID_P EQUAL 4 OR CMAKE_INSTALL_LIBDIR STREQUAL "lib32")
|
|
|
|
|
|
|
|
add_definitions(-DHAVE_STDINT_H=1)
|
|
|
|
|
|
|
|
add_definitions(-DDS_AVAILABLE)
|
|
|
|
|
|
|
|
add_definitions(-w -nostdinc)
|
|
|
|
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D__DARWIN_UNIX03 -fPIC -ggdb")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib")
|
|
|
|
|
|
|
|
include_directories("${CMAKE_CURRENT_SOURCE_DIR}/Libinfo")
|
|
|
|
|
|
|
|
add_subdirectory(gen.subproj)
|
|
|
|
add_subdirectory(util.subproj)
|
|
|
|
add_subdirectory(dns.subproj)
|
|
|
|
add_subdirectory(nis.subproj)
|
|
|
|
add_subdirectory(rpc.subproj)
|
|
|
|
add_subdirectory(lookup.subproj)
|
|
|
|
add_subdirectory(membership.subproj)
|
|
|
|
add_subdirectory(darling-resolver)
|
|
|
|
|
|
|
|
make_fat(info-dns
|
|
|
|
info-gen
|
|
|
|
info-nis
|
|
|
|
info-rpc
|
|
|
|
info-lookup
|
|
|
|
info-membership
|
|
|
|
darling-resolver
|
|
|
|
)
|
|
|
|
|
|
|
|
set(DYLIB_INSTALL_NAME "/usr/lib/system/libsystem_info.dylib")
|
|
|
|
add_circular(system_info FAT
|
|
|
|
OBJECTS
|
|
|
|
$<TARGET_OBJECTS:info-util>
|
|
|
|
$<TARGET_OBJECTS:info-dns>
|
|
|
|
$<TARGET_OBJECTS:info-gen>
|
|
|
|
$<TARGET_OBJECTS:info-nis>
|
|
|
|
$<TARGET_OBJECTS:info-rpc>
|
|
|
|
$<TARGET_OBJECTS:info-lookup>
|
|
|
|
$<TARGET_OBJECTS:info-membership>
|
|
|
|
$<TARGET_OBJECTS:darling-resolver>
|
|
|
|
SIBLINGS
|
|
|
|
system_c
|
|
|
|
system_dyld
|
|
|
|
system_blocks
|
|
|
|
system_kernel
|
|
|
|
system_malloc
|
|
|
|
system_duct
|
|
|
|
system_pthread
|
|
|
|
libdispatch_shared
|
|
|
|
system_notify
|
|
|
|
system_asl
|
|
|
|
platform
|
|
|
|
xpc
|
|
|
|
compiler_rt
|
|
|
|
launch
|
|
|
|
system_trace
|
|
|
|
resolv-darwin
|
|
|
|
)
|
|
|
|
|
|
|
|
install(TARGETS system_info DESTINATION libexec/darling/usr/lib/system)
|
2023-05-02 23:11:18 +00:00
|
|
|
#install(FILES master.passwd DESTINATION libexec/darling/private/etc)
|
2022-12-07 02:58:48 +00:00
|
|
|
|