CMakeLists.txt
 1  project(KeychainSyncAccountNotification)
 2  
 3  add_bundle(KeychainSyncAccountNotification ""
 4  	KeychainSyncAccountNotification.m
 5  )
 6  
 7  set_target_properties(KeychainSyncAccountNotification PROPERTIES
 8  	SUFFIX ".bundle"
 9  )
10  
11  target_link_libraries(KeychainSyncAccountNotification
12  	AuthKit
13  	Security
14  	#Accounts # missing
15  	Foundation
16  
17  	# implied dependencies
18  	objc
19  	system
20  )
21  
22  install(TARGETS KeychainSyncAccountNotification DESTINATION libexec/darling/System/Library/Accounts/Notification)