include "llvm/Option/OptParser.td" class F : Flag<["-"], name>, HelpText; class FF: Flag<["--"], name>, HelpText; class S: Separate<["-"], name>, HelpText, MetaVarName; def help : FF<"help", "Display available options">; def : F<"h", "Alias for --help">, Alias; def max_concurrency : S<"c", "", "Maximum number of files to scan concurrently. " "If 0, use the hardware concurrency.">; def host_interface : S<"i", "", "Host interface to bind to.">; def min_interval : S<"m", "", "Minimum number of seconds to wait before an on-demand update can be" "triggered by a request for a buildid which is not in the collection.">; def port : S<"p", "", "Port to listen on. Set to 0 to bind to any available port.">; def scan_interval : S<"t", "", "Number of seconds to wait between subsequent " "automated scans of the filesystem.">; def verbose_logging : F<"v", "Enable verbose logging.">;