From c7bf2253cb2fd1d496fe83538492e193e014de3c Mon Sep 17 00:00:00 2001 From: Arnaud Diederen Date: Tue, 1 Sep 2015 12:14:23 +0200 Subject: [PATCH] Bit more doc --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 945ec6d..a717017 100644 --- a/build.py +++ b/build.py @@ -59,7 +59,7 @@ Notes: parser.add_argument("--ida-sdk", type=str, help="Path to the IDA SDK", default=IDA_SDK) parser.add_argument("--swig-bin", type=str, help="Path to the SWIG binary", default="") parser.add_argument("--swig-inc", type=str, help="Path(s) to the SWIG includes directory(ies)", default="") -parser.add_argument("--with-hexrays", help="Build Hex-Rays decompiler bindings", default=False, action="store_true") +parser.add_argument("--with-hexrays", help="Build Hex-Rays decompiler bindings (requires the 'hexrays.hpp' header to be present in the SDK's include/ directory)", default=False, action="store_true") parser.add_argument("--ea64", help="Build 64-bit EA version of the plugin", default=False, action="store_true") parser.add_argument("--debug", help="Build debug version of the plugin", default=False, action="store_true") parser.add_argument("-v", "--verbose", help="Verbose mode", default=False, action="store_true")