this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Link to CoreFoundation using the new way

+9 -24
+1 -1
src/AppleSystemInfo/CMakeLists.txt
··· 18 18 src/functions.c 19 19 DEPENDENCIES 20 20 system 21 - CoreFoundation 21 + ${CoreFoundation} 22 22 )
+2
src/CMakeLists.txt
··· 152 152 ${CMAKE_CURRENT_SOURCE_DIR}/lkm/include 153 153 ) 154 154 155 + set(CoreFoundation "${CMAKE_BINARY_DIR}/src/external/corefoundation/CoreFoundation") 156 + 155 157 add_subdirectory(external/libkqueue) 156 158 157 159
+1 -1
src/CoreServices/CMakeLists.txt
··· 59 59 DEPENDENCIES 60 60 icucore 61 61 system 62 - CoreFoundation 62 + ${CoreFoundation} 63 63 cxx 64 64 iconv 65 65 ${EXTRA_LIBS}
+1 -1
src/CryptoTokenKit/CMakeLists.txt
··· 24 24 25 25 DEPENDENCIES 26 26 system 27 - CoreFoundation 27 + ${CoreFoundation} 28 28 )
+1 -1
src/DiskArbitration/CMakeLists.txt
··· 18 18 ${da_SRCS} 19 19 DEPENDENCIES 20 20 system 21 - CoreFoundation 21 + ${CoreFoundation} 22 22 )
+1 -3
src/SystemConfiguration/CMakeLists.txt
··· 18 18 ${SystemConfiguration_SRCS} 19 19 DEPENDENCIES 20 20 system 21 - CoreFoundation 21 + ${CoreFoundation} 22 22 ) 23 - 24 -
+1 -1
src/launchd/support/CMakeLists.txt
··· 33 33 34 34 include(darling_exe) 35 35 add_darling_executable(launchctl launchctl.c) 36 - target_link_libraries(launchctl xpc CoreFoundation edit) 36 + target_link_libraries(launchctl xpc ${CoreFoundation} edit) 37 37 38 38 add_darling_executable(launchproxy launchproxy.c) 39 39 target_link_libraries(launchproxy xpc)
+1 -16
src/tools/CMakeLists.txt
··· 1 1 project(tools) 2 2 3 - cmake_minimum_required(VERSION 2.4.0) 4 - 5 - if(COMMAND cmake_policy) 6 - cmake_policy(SET CMP0003 NEW) 7 - endif(COMMAND cmake_policy) 8 - 9 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -nostdinc -D__DARWIN_UNIX03") 10 - 11 - include_directories( 12 - ${CMAKE_SOURCE_DIR}/src/external/corefoundation 13 - ${CMAKE_SOURCE_DIR}/src/external/libclosure 14 - ${CMAKE_SOURCE_DIR}/src/launchd/liblaunch 15 - ) 16 - 17 3 add_darling_executable(sw_vers sw_vers.c) 18 4 add_darling_executable(sudo sudo.c) 19 5 20 6 install(TARGETS sw_vers sudo DESTINATION libexec/darling/usr/bin) 21 - target_link_libraries(sw_vers system CoreFoundation) 22 - 7 + target_link_libraries(sw_vers ${CoreFoundation})