Commit 70d4e0bf authored by Stefan Behnel's avatar Stefan Behnel

merge 0.19.x branch into master

parents 542198a9 32a6519a
......@@ -84,10 +84,14 @@ else:
scripts = ["cython.py"]
if include_debugger:
if os.name == "posix":
scripts.append('bin/cygdb')
if 'setuptools' in sys.modules:
setuptools_extra_args['entry_points']['console_scripts'].append(
'cygdb = Cython.Debugger.Cygdb:main')
else:
scripts.append('cygdb.py')
if os.name == "posix":
scripts.append('bin/cygdb')
else:
scripts.append('cygdb.py')
def compile_cython_modules(profile=False, compile_more=False, cython_with_refnanny=False):
......
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