File tree 3 files changed +0
-14
lines changed
3 files changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ let package = Package(
69
69
dependencies: [
70
70
" TSCLibc " ,
71
71
" TSCclibc " ,
72
- . product( name: " SystemPackage " , package : " swift-system " ) ,
73
72
] ,
74
73
exclude: CMakeFiles + [ " README.md " ] ,
75
74
cxxSettings: [
@@ -110,13 +109,3 @@ let package = Package(
110
109
exclude: [ " pkgconfigInputs " , " Inputs " ] ) ,
111
110
]
112
111
)
113
-
114
- if ProcessInfo . processInfo. environment [ " SWIFTCI_USE_LOCAL_DEPS " ] == nil {
115
- package . dependencies += [
116
- . package ( url: " https://github.com/apple/swift-system.git " , from: " 1.1.1 " ) ,
117
- ]
118
- } else {
119
- package . dependencies += [
120
- . package ( path: " ../swift-system " ) ,
121
- ]
122
- }
Original file line number Diff line number Diff line change @@ -56,8 +56,6 @@ target_compile_options(TSCBasic PUBLIC
56
56
"$<$<PLATFORM_ID:Android>:SHELL:-Xcc -U_GNU_SOURCE>"
57
57
# Ignore secure function warnings on Windows.
58
58
"$<$<PLATFORM_ID:Windows>:SHELL:-Xcc -D_CRT_SECURE_NO_WARNINGS>" )
59
- target_link_libraries (TSCBasic PUBLIC
60
- SwiftSystem::SystemPackage)
61
59
target_link_libraries (TSCBasic PRIVATE
62
60
TSCclibc
63
61
TSCLibc)
Original file line number Diff line number Diff line change 11
11
import TSCLibc
12
12
import Foundation
13
13
import Dispatch
14
- import SystemPackage
15
14
16
15
public struct FileSystemError : Error , Equatable , Sendable {
17
16
public enum Kind : Equatable , Sendable {
You can’t perform that action at this time.
0 commit comments