1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-07 21:21:31 +00:00

Make py2exe include ndiff when building Zenmap

This commit is contained in:
dmiller
2014-08-23 04:22:17 +00:00
parent 699fe77571
commit 4603df3d0a

View File

@@ -582,6 +582,14 @@ if 'py2exe' in sys.argv:
}],
# On Windows we build Ndiff here in Zenmap's setup.py so the two Python
# programs will share a common runtime.
'py_modules': ["ndiff"],
# override the package search path to let Ndiff be found
'package_dir': {
'zenmapCore': 'zenmapCore',
'zenmapGUI': 'zenmapGUI',
'radialnet': 'radialnet',
'': '../ndiff'
},
'console': [{
"script": "../ndiff/scripts/ndiff",
"description": "Nmap scan comparison tool"