Files
XcodeGen/Sources/ProjectSpec/Platform.swift
T
2017-11-22 13:01:17 +01:00

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
}
}
}