We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 966d89a commit 742f624Copy full SHA for 742f624
4 files changed
Sources/ConsoleKitTerminal/Terminal/ANSI.swift
@@ -1,4 +1,7 @@
1
import Foundation
2
+#if canImport(Android)
3
+import Android
4
+#endif
5
6
/// Terminal ANSI commands
7
enum ANSICommand {
Sources/ConsoleKitTerminal/Terminal/Console.swift
/// Protocol for powering styled Console I/O.
///
Sources/ConsoleKitTerminal/Terminal/Terminal.swift
@@ -1,5 +1,8 @@
import NIOConcurrencyHelpers
#if os(Windows)
import WinSDK
8
#endif
Sources/ConsoleKitTerminal/Terminal/readpassphrase_linux.swift
@@ -4,6 +4,8 @@
import Darwin
#elseif canImport(Glibc)
import Glibc
+#elseif canImport(Android)
9
#elseif canImport(Musl)
10
import Musl
11
0 commit comments