mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 16:35:04 +01:00
parent
441090300f
commit
b3575cb1b4
1 changed files with 8 additions and 0 deletions
8
setup.py
8
setup.py
|
@ -85,6 +85,14 @@ if force_bundled_libcapnp:
|
|||
force_system_libcapnp = "--force-system-libcapnp" in sys.argv
|
||||
if force_system_libcapnp:
|
||||
sys.argv.remove("--force-system-libcapnp")
|
||||
disable_cython = "--disable-cython" in sys.argv
|
||||
if disable_cython:
|
||||
sys.argv.remove("--disable-cython")
|
||||
use_cython = False
|
||||
force_cython = "--force-cython" in sys.argv
|
||||
if force_cython:
|
||||
sys.argv.remove("--force-cython")
|
||||
use_cython = True
|
||||
|
||||
|
||||
class build_libcapnp_ext(build_ext_c):
|
||||
|
|
Loading…
Add table
Reference in a new issue