Files
XcodeGen/Sources/ProjectSpec/Platform.swift
T
2017-10-29 22:27:05 +01:00

25 lines
370 B
Swift

//
// Platform.swift
// XcodeGen
//
// Created by Yonas Kolb on 21/7/17.
//
//
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
}
}
}