mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
17 lines
287 B
Swift
17 lines
287 B
Swift
import Foundation
|
|
|
|
public enum Platform: String {
|
|
case iOS
|
|
case watchOS
|
|
case tvOS
|
|
case macOS
|
|
public var carthageDirectoryName: String {
|
|
switch self {
|
|
case .macOS:
|
|
return "Mac"
|
|
default:
|
|
return rawValue
|
|
}
|
|
}
|
|
}
|