File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ set(SWIFT_ENABLE_GOLD_LINKER FALSE CACHE BOOL
86
86
"Enable using the gold linker when available" )
87
87
88
88
set (_SWIFT_KNOWN_INSTALL_COMPONENTS
89
- "autolink-driver;compiler;clang-builtin-headers;clang-resource-dir-symlink;clang-builtin-headers-in-clang-resource-dir;stdlib;stdlib-experimental;sdk-overlay;editor-integration;tools;testsuite-tools;dev;license;sourcekit-xpc-service;sourcekit-inproc" )
89
+ "autolink-driver;compiler;clang-builtin-headers;clang-resource-dir-symlink;clang-builtin-headers-in-clang-resource-dir;stdlib;stdlib-experimental;sdk-overlay;editor-integration;tools;testsuite-tools;dev;license;sourcekit-xpc-service;sourcekit-inproc;swift-remote-mirror-headers " )
90
90
91
91
# Set the SWIFT_INSTALL_COMPONENTS variable to the default value if it is not passed in via -D
92
92
set (SWIFT_INSTALL_COMPONENTS "${_SWIFT_KNOWN_INSTALL_COMPONENTS} " CACHE STRING
Original file line number Diff line number Diff line change @@ -2,3 +2,4 @@ configure_file(Config.h.in ${CMAKE_CURRENT_BINARY_DIR}/Config.h
2
2
ESCAPE_QUOTES @ONLY )
3
3
4
4
add_subdirectory (Option )
5
+ add_subdirectory (SwiftRemoteMirror )
Original file line number Diff line number Diff line change
1
+ set (swift_remote_mirror_headers )
2
+ list (APPEND swift_remote_mirror_headers
3
+ "MemoryReaderInterface.h"
4
+ "SwiftRemoteMirror.h"
5
+ "SwiftRemoteMirrorTypes.h" )
6
+ swift_install_in_component ("swift-remote-mirror-headers"
7
+ FILES ${swift_remote_mirror_headers}
8
+ DESTINATION "include/swift/SwiftRemoteMirror" )
9
+
Original file line number Diff line number Diff line change 16
16
[preset: mixin_buildbot_install_components]
17
17
dash-dash
18
18
19
- swift-install-components =compiler; clang-builtin-headers;stdlib;sdk-overlay;editor-integration;tools;testsuite-tools;sourcekit-xpc-service
19
+ swift-install-components =compiler; clang-builtin-headers;stdlib;sdk-overlay;editor-integration;tools;testsuite-tools;sourcekit-xpc-service;swift-remote-mirror-headers;
20
20
21
21
22
22
[preset: mixin_buildbot_trunk_base]
@@ -720,7 +720,7 @@ mixin-preset=
720
720
721
721
dash-dash
722
722
723
- swift-install-components =compiler; clang-builtin-headers;stdlib;sdk-overlay;license;sourcekit-xpc-service
723
+ swift-install-components =compiler; clang-builtin-headers;stdlib;sdk-overlay;license;sourcekit-xpc-service;swift-remote-mirror-headers
724
724
llvm-install-components =libclang; libclang-headers
725
725
726
726
# Path to the .tar.gz package we would create.
You can’t perform that action at this time.
0 commit comments