Skip to content

Commit 357be49

Browse files
Merge pull request #1437 from cachemeifyoucan/eng/PR-new-option-cache-flag
[makeOptions] Add new enum from swift Options
2 parents 03f3539 + cf57b26 commit 357be49

File tree

3 files changed

+78
-72
lines changed

3 files changed

+78
-72
lines changed

Sources/SwiftOptions/Option.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ public struct OptionAttributes: OptionSet, Hashable {
2929
public static let argumentIsPath = OptionAttributes(rawValue: 0x200)
3030
public static let moduleInterface = OptionAttributes(rawValue: 0x400)
3131
public static let supplementaryOutput = OptionAttributes(rawValue: 0x800)
32+
public static let argumentIsFileList = OptionAttributes(rawValue: 0x1000)
33+
public static let cacheInvariant = OptionAttributes(rawValue: 0x2000)
3234
}
3335

3436
/// Describes a command-line option.

0 commit comments

Comments
 (0)