Skip to content

Commit 9afc070

Browse files
committed
add CMake files
1 parent 89d3ee7 commit 9afc070

File tree

3 files changed

+38
-0
lines changed

3 files changed

+38
-0
lines changed

Sources/FoundationEssentials/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ add_subdirectory(JSON)
4444
add_subdirectory(Locale)
4545
add_subdirectory(Predicate)
4646
add_subdirectory(ProcessInfo)
47+
add_subdirectory(ProgressReporter)
4748
add_subdirectory(PropertyList)
4849
add_subdirectory(String)
4950
add_subdirectory(TimeZone)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
target_sources(FoundationEssentials PRIVATE
15+
ProgressFraction.swift
16+
ProgressReporter.swift
17+
ProgressReporter+Interop.swift
18+
ProgressReporter+Properties.swift
19+
Subprogress)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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_include_directories(FoundationInternationalization PRIVATE .)
16+
target_sources(FoundationInternationalization PRIVATE
17+
ProgressReporter+FileFormatStyle.swift
18+
ProgressReporter+FormatStyle.swift)

0 commit comments

Comments
 (0)