summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2020-02-27 10:11:35 +0100
committerEdward Welbourne <edward.welbourne@qt.io>2020-02-28 10:47:36 +0100
commitb6fad7588ab2a0012b424b07849de814b77effc6 (patch)
treed9bf7245a3483624671ed807f422d2c167835056 /util
parent981c1fe15f68106b88d89b5e31c8a932b95bb635 (diff)
Correct pro2cmake's Requirements message
It only told me about two packages to install, so I got an error after I'd installed them and ran it, because I hadn't installed the rest. Save the next person an extra round-trip. Change-Id: I8b544fc2637b86656ec2adddce8e95e6e9e1daf5 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'util')
-rwxr-xr-xutil/cmake/pro2cmake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py
index 43d608e219..52569b43cf 100755
--- a/util/cmake/pro2cmake.py
+++ b/util/cmake/pro2cmake.py
@@ -86,7 +86,7 @@ cmake_api_version = 2
def _parse_commandline():
parser = ArgumentParser(
description="Generate CMakeLists.txt files from ." "pro files.",
- epilog="Requirements: pip install sympy pyparsing",
+ epilog="Requirements: pip install -r requirements.txt",
)
parser.add_argument(
"--debug", dest="debug", action="store_true", help="Turn on all debug output"