mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
a271fec18d
* Fixed wrong directory path for macOS before: Carthage/Build/macOS after: Carthage/Build/Mac * Update CHANGELOG.md
25 lines
375 B
Swift
25 lines
375 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 self.rawValue
|
|
}
|
|
}
|
|
}
|