Commit f53690f3 authored by scoder's avatar scoder Committed by GitHub

Merge pull request #2110 from xoviat/cimport-pyx

Add cimport-from-pyx to command line
parents 801a5dc9 1b196b24
...@@ -154,6 +154,8 @@ def parse_command_line(args): ...@@ -154,6 +154,8 @@ def parse_command_line(args):
options.capi_reexport_cincludes = True options.capi_reexport_cincludes = True
elif option == "--fast-fail": elif option == "--fast-fail":
Options.fast_fail = True Options.fast_fail = True
elif option == "--cimport-from-pyx":
Options.cimport_from_pyx = True
elif option in ('-Werror', '--warning-errors'): elif option in ('-Werror', '--warning-errors'):
Options.warning_errors = True Options.warning_errors = True
elif option in ('-Wextra', '--warning-extra'): elif option in ('-Wextra', '--warning-extra'):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment