build.py: Added hotkey example script

build.py: Version bumped to 1.0.0
This commit is contained in:
gergely.erdelyi 2008-09-28 09:42:44 +00:00
parent 62bddd5e04
commit 289133158f

View File

@ -27,9 +27,9 @@ IDA_SDK = ".." + os.sep + "swigsdk-versions" + os.sep + "%d.%d" % (IDA_MAJOR_VER
# End of user configurable options # End of user configurable options
# IDAPython version # IDAPython version
VERSION_MAJOR = 0 VERSION_MAJOR = 1
VERSION_MINOR = 9 VERSION_MINOR = 0
VERSION_PATCH = 61 VERSION_PATCH = 0
# Determine Python version # Determine Python version
PYTHON_MAJOR_VERSION = int(platform.python_version()[0]) PYTHON_MAJOR_VERSION = int(platform.python_version()[0])
@ -71,6 +71,7 @@ BINDIST_MANIFEST = [
"examples/ex1.idc", "examples/ex1.idc",
"examples/ex1_idaapi.py", "examples/ex1_idaapi.py",
"examples/ex1_idautils.py", "examples/ex1_idautils.py",
"examples/hotkey.py",
"examples/structure.py", "examples/structure.py",
] ]