this repo has no description
1
fork

Configure Feed

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

Build notifyd and notifyutil

+29
+5
src/libnotify/CMakeLists.txt
··· 43 43 #target_link_libraries(system_notify system_c system_kernel system_blocks libdispatch_shared launch system_dyld system_malloc system_pthread) 44 44 #make_fat(system_notify) 45 45 46 + add_darling_executable(notifyutil notifyutil/notifyutil.c) 47 + 46 48 install(TARGETS system_notify DESTINATION libexec/darling/usr/lib/system) 49 + install(TARGETS notifyutil DESTINATION libexec/darling/usr/bin) 50 + install(FILES notifyutil.1 DESTINATION libexec/darling/usr/share/man/man1) 47 51 52 + add_subdirectory(notifyd)
+24
src/libnotify/notifyd/CMakeLists.txt
··· 1 + project(notifyd) 2 + 3 + include_directories( 4 + ${CMAKE_SOURCE_DIR}/src/external/syslog/libsystem_asl.tproj/include 5 + ${CMAKE_SOURCE_DIR}/src/libc/stdtime/FreeBSD 6 + ) 7 + 8 + set(notifyd_sources 9 + notifyd.c 10 + notify_proc.c 11 + pathwatch.c 12 + service.c 13 + timer.c 14 + ${CMAKE_CURRENT_BINARY_DIR}/../notify_ipcServer.c 15 + ) 16 + 17 + add_darling_executable(notifyd ${notifyd_sources}) 18 + target_link_libraries(notifyd system) 19 + 20 + install(TARGETS notifyd DESTINATION libexec/darling/usr/sbin) 21 + install(FILES com.apple.notifyd.plist DESTINATION libexec/darling/System/Library/LaunchDaemons) 22 + install(FILES notifyd.8 DESTINATION libexec/darling/usr/share/man/man8) 23 + install(FILES notify.conf.MacOSX RENAME notify.conf DESTINATION libexec/darling/etc) 24 +