Skip to content

Commit cf57b26

Browse files
[makeOptions] Add new enum from swift Options
1 parent 03f3539 commit cf57b26

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)