File tree Expand file tree Collapse file tree 4 files changed +25
-2
lines changed
Sources/FoundationEssentials Expand file tree Collapse file tree 4 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 8686 message (STATUS "_SwiftCollections_SourceDIR not provided, checking out local copy of swift-collections" )
8787 FetchContent_Declare(SwiftCollections
8888 GIT_REPOSITORY https://github.com/apple /swift-collections.git
89- GIT_TAG 1.1.2 )
89+ GIT_TAG 1.2.1 )
9090endif ()
9191FetchContent_MakeAvailable(SwiftFoundationICU SwiftCollections)
9292
Original file line number Diff line number Diff line change @@ -129,7 +129,8 @@ let package = Package(
129129 " CMakeLists.txt " ,
130130 " ProcessInfo/CMakeLists.txt " ,
131131 " FileManager/CMakeLists.txt " ,
132- " URL/CMakeLists.txt "
132+ " URL/CMakeLists.txt " ,
133+ " NotificationCenter/CMakeLists.txt "
133134 ] ,
134135 cSettings: [
135136 . define( " _GNU_SOURCE " , . when( platforms: [ . linux] ) )
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ add_subdirectory(FileManager)
4242add_subdirectory (Formatting)
4343add_subdirectory (JSON)
4444add_subdirectory (Locale)
45+ add_subdirectory (NotificationCenter)
4546add_subdirectory (Predicate)
4647add_subdirectory (ProcessInfo)
4748add_subdirectory (PropertyList)
Original file line number Diff line number Diff line change 1+ ##===----------------------------------------------------------------------===##
2+ ##
3+ ## This source file is part of the Swift open source project
4+ ##
5+ ## Copyright (c) 2025 Apple Inc. and the Swift project authors
6+ ## Licensed under Apache License v2.0
7+ ##
8+ ## See LICENSE.txt for license information
9+ ## See CONTRIBUTORS.md for the list of Swift project authors
10+ ##
11+ ## SPDX-License-Identifier: Apache-2.0
12+ ##
13+ ##===----------------------------------------------------------------------===##
14+
15+ target_sources (FoundationEssentials PRIVATE
16+ ActorQueueManager.swift
17+ AsyncMessage.swift
18+ AsyncMessage+AsyncSequence.swift
19+ MainActorMessage.swift
20+ NotificationCenter.swift
21+ NotificationCenterMessage.swift)
You can’t perform that action at this time.
0 commit comments