mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
Meta: Add help to generate_python_encoding_indexes.py
This commit is contained in:
parent
2682f370dd
commit
1a3a9eee7a
|
|
@ -215,9 +215,17 @@ namespace TextCodec {
|
|||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser(description="Generate text codec lookup tables", add_help=False)
|
||||
parser.add_argument("-h", required=True)
|
||||
parser.add_argument("-c", required=True)
|
||||
parser.add_argument("-j", required=True)
|
||||
parser.add_argument("-H", action="help", help="Show this help message and exit")
|
||||
parser.add_argument(
|
||||
"-h", "-generated-header-path", required=True, help="Path to the lookup table header file to generate"
|
||||
)
|
||||
parser.add_argument(
|
||||
"-c",
|
||||
"-generated_implementation_path",
|
||||
required=True,
|
||||
help="Path to the lookup table implementation file to generate",
|
||||
)
|
||||
parser.add_argument("-j", "-json-path", required=True, help="Path to the JSON file to read from")
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user