File tree Expand file tree Collapse file tree 10 files changed +11
-74
lines changed
PackageCollectionsSigning Expand file tree Collapse file tree 10 files changed +11
-74
lines changed Original file line number Diff line number Diff line change 6
6
# See http://swift.org/LICENSE.txt for license information
7
7
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors
8
8
9
- add_library (LLBuildManifest
9
+ add_library (LLBuildManifest STATIC
10
10
BuildManifest.swift
11
11
Command .swift
12
12
ManifestWriter.swift
@@ -22,10 +22,4 @@ target_link_libraries(LLBuildManifest PUBLIC
22
22
set_target_properties (LLBuildManifest PROPERTIES
23
23
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY} )
24
24
25
- if (USE_CMAKE_INSTALL )
26
- install (TARGETS LLBuildManifest
27
- ARCHIVE DESTINATION lib
28
- LIBRARY DESTINATION lib
29
- RUNTIME DESTINATION bin )
30
- endif ()
31
25
set_property (GLOBAL APPEND PROPERTY SwiftPM_EXPORTS LLBuildManifest )
Original file line number Diff line number Diff line change 6
6
# See http://swift.org/LICENSE.txt for license information
7
7
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors
8
8
9
- add_library (PackageCollections
9
+ add_library (PackageCollections STATIC
10
10
Model/Collection.swift
11
11
Model/CVE.swift
12
12
Model/License.swift
@@ -46,10 +46,4 @@ target_link_libraries(PackageCollections PUBLIC
46
46
set_target_properties (PackageCollections PROPERTIES
47
47
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY} )
48
48
49
- if (USE_CMAKE_INSTALL )
50
- install (TARGETS PackageCollections
51
- ARCHIVE DESTINATION lib
52
- LIBRARY DESTINATION lib
53
- RUNTIME DESTINATION bin )
54
- endif ()
55
49
set_property (GLOBAL APPEND PROPERTY SwiftPM_EXPORTS PackageCollections )
Original file line number Diff line number Diff line change 6
6
# See http://swift.org/LICENSE.txt for license information
7
7
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors
8
8
9
- add_library (PackageCollectionsModel
9
+ add_library (PackageCollectionsModel STATIC
10
10
PackageCollectionModel.swift
11
11
PackageCollectionModel+v1.swift )
12
12
target_link_libraries (PackageCollectionsModel PUBLIC
@@ -15,10 +15,4 @@ target_link_libraries(PackageCollectionsModel PUBLIC
15
15
set_target_properties (PackageCollectionsModel PROPERTIES
16
16
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY} )
17
17
18
- if (USE_CMAKE_INSTALL )
19
- install (TARGETS PackageCollectionsModel
20
- ARCHIVE DESTINATION lib
21
- LIBRARY DESTINATION lib
22
- RUNTIME DESTINATION bin )
23
- endif ()
24
18
set_property (GLOBAL APPEND PROPERTY SwiftPM_EXPORTS PackageCollectionsModel )
Original file line number Diff line number Diff line change 6
6
# See http://swift.org/LICENSE.txt for license information
7
7
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors
8
8
9
- add_library (PackageCollectionsSigning
9
+ add_library (PackageCollectionsSigning STATIC
10
10
Certificate/Certificate.swift
11
11
Certificate/CertificatePolicy.swift
12
12
Key/ASN1/ASN1.swift
@@ -50,10 +50,4 @@ set_target_properties(PackageCollectionsSigning PROPERTIES
50
50
target_link_options (PackageCollectionsSigning PRIVATE
51
51
"$<$<PLATFORM_ID:Darwin>:SHELL:-Xlinker -framework -Xlinker Security>" )
52
52
53
- if (USE_CMAKE_INSTALL )
54
- install (TARGETS PackageCollectionsSigning
55
- ARCHIVE DESTINATION lib
56
- LIBRARY DESTINATION lib
57
- RUNTIME DESTINATION bin )
58
- endif ()
59
53
set_property (GLOBAL APPEND PROPERTY SwiftPM_EXPORTS PackageCollectionsSigning )
Original file line number Diff line number Diff line change 6
6
# See http://swift.org/LICENSE.txt for license information
7
7
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors
8
8
9
- add_library (PackageFingerprint
9
+ add_library (PackageFingerprint STATIC
10
10
FilePackageFingerprintStorage.swift
11
11
Model.swift
12
12
PackageFingerprintStorage.swift )
@@ -19,10 +19,4 @@ target_link_libraries(PackageFingerprint PUBLIC
19
19
set_target_properties (PackageFingerprint PROPERTIES
20
20
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY} )
21
21
22
- if (USE_CMAKE_INSTALL )
23
- install (TARGETS PackageFingerprint
24
- ARCHIVE DESTINATION lib
25
- LIBRARY DESTINATION lib
26
- RUNTIME DESTINATION bin )
27
- endif ()
28
22
set_property (GLOBAL APPEND PROPERTY SwiftPM_EXPORTS PackageFingerprint )
Original file line number Diff line number Diff line change 6
6
# See http://swift.org/LICENSE.txt for license information
7
7
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors
8
8
9
- add_library (PackageRegistry
9
+ add_library (PackageRegistry STATIC
10
10
Registry.swift
11
11
RegistryConfiguration.swift
12
12
RegistryClient.swift
@@ -22,10 +22,4 @@ target_link_libraries(PackageRegistry PUBLIC
22
22
set_target_properties (PackageRegistry PROPERTIES
23
23
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY} )
24
24
25
- if (USE_CMAKE_INSTALL )
26
- install (TARGETS PackageRegistry
27
- ARCHIVE DESTINATION lib
28
- LIBRARY DESTINATION lib
29
- RUNTIME DESTINATION bin )
30
- endif ()
31
25
set_property (GLOBAL APPEND PROPERTY SwiftPM_EXPORTS PackageRegistry )
Original file line number Diff line number Diff line change 6
6
# See http://swift.org/LICENSE.txt for license information
7
7
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors
8
8
9
- add_library (SPMLLBuild
9
+ add_library (SPMLLBuild STATIC
10
10
llbuild.swift )
11
11
# NOTE(compnerd) workaround for CMake not setting up include flags yet
12
12
set_target_properties (SPMLLBuild PROPERTIES
@@ -18,10 +18,4 @@ target_link_libraries(SPMLLBuild PUBLIC
18
18
Basics
19
19
llbuildSwift )
20
20
21
- if (USE_CMAKE_INSTALL )
22
- install (TARGETS SPMLLBuild
23
- ARCHIVE DESTINATION lib
24
- LIBRARY DESTINATION lib
25
- RUNTIME DESTINATION bin )
26
- endif ()
27
21
set_property (GLOBAL APPEND PROPERTY SwiftPM_EXPORTS SPMLLBuild )
Original file line number Diff line number Diff line change 6
6
# See http://swift.org/LICENSE.txt for license information
7
7
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors
8
8
9
- add_library (SourceControl
9
+ add_library (SourceControl STATIC
10
10
GitRepository.swift
11
11
Repository.swift
12
12
RepositoryManager.swift )
13
-
14
13
target_link_libraries (SourceControl PUBLIC
15
14
Basics
16
15
PackageModel
@@ -22,10 +21,4 @@ target_link_libraries(SourceControl PUBLIC
22
21
set_target_properties (SourceControl PROPERTIES
23
22
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY} )
24
23
25
- if (USE_CMAKE_INSTALL )
26
- install (TARGETS SourceControl
27
- ARCHIVE DESTINATION lib
28
- LIBRARY DESTINATION lib
29
- RUNTIME DESTINATION bin )
30
- endif ()
31
24
set_property (GLOBAL APPEND PROPERTY SwiftPM_EXPORTS SourceControl )
Original file line number Diff line number Diff line change 6
6
# See http://swift.org/LICENSE.txt for license information
7
7
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors
8
8
9
- add_library (XCBuildSupport
9
+ add_library (XCBuildSupport STATIC
10
10
PIF.swift
11
11
PIFBuilder.swift
12
12
XCBuildDelegate.swift
13
13
XCBuildMessage.swift
14
14
XCBuildOutputParser.swift
15
- XcodeBuildSystem.swift
16
- )
15
+ XcodeBuildSystem.swift )
17
16
target_link_libraries (XCBuildSupport PUBLIC
18
17
Build
19
18
TSCBasic
@@ -23,10 +22,3 @@ target_link_libraries(XCBuildSupport PUBLIC
23
22
24
23
set_target_properties (XCBuildSupport PROPERTIES
25
24
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY} )
26
-
27
- if (USE_CMAKE_INSTALL )
28
- install (TARGETS XCBuildSupport
29
- ARCHIVE DESTINATION lib
30
- LIBRARY DESTINATION lib
31
- RUNTIME DESTINATION bin )
32
- endif ()
Original file line number Diff line number Diff line change 6
6
# See http://swift.org/LICENSE.txt for license information
7
7
# See http://swift.org/CONTRIBUTORS.txt for Swift project authors
8
8
9
- add_library (Xcodeproj
9
+ add_library (Xcodeproj STATIC
10
10
generate.swift
11
11
pbxproj.swift
12
12
PropertyList.swift
@@ -22,9 +22,3 @@ target_link_libraries(Xcodeproj PUBLIC
22
22
set_target_properties (Xcodeproj PROPERTIES
23
23
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY} )
24
24
25
- if (USE_CMAKE_INSTALL )
26
- install (TARGETS Xcodeproj
27
- ARCHIVE DESTINATION lib
28
- LIBRARY DESTINATION lib
29
- RUNTIME DESTINATION bin )
30
- endif ()
You can’t perform that action at this time.
0 commit comments