mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Mark the public interfaces with the appropriate visibility/dll storage. This fixes an issue with the Windows build which keeps the SwiftRemoteMirror.dll out of date constantly as no import library is created. That occurs due to the fact that the library does not export any interfaces. Take the opportunity to move the public interfaces to protected visibility on ELF.
13 lines
436 B
CMake
13 lines
436 B
CMake
set(swift_remote_mirror_headers)
|
|
list(APPEND swift_remote_mirror_headers
|
|
MemoryReaderInterface.h
|
|
Platform.h
|
|
SwiftRemoteMirror.h
|
|
SwiftRemoteMirrorTypes.h)
|
|
swift_install_in_component("swift-remote-mirror-headers"
|
|
FILES
|
|
${swift_remote_mirror_headers}
|
|
DESTINATION
|
|
"include/swift/SwiftRemoteMirror")
|
|
|