aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/project/ci/cmake.py
diff options
context:
space:
mode:
Diffstat (limited to 'project/ci/cmake.py')
-rw-r--r--project/ci/cmake.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/project/ci/cmake.py b/project/ci/cmake.py
index 1f49f78..13929f7 100644
--- a/project/ci/cmake.py
+++ b/project/ci/cmake.py
@@ -10,6 +10,7 @@ import sys
from project.ci.dirs import Dirs
from project.cmake.build import BuildParameters, build
from project.utils import setup_logging
+import project.version
def _parse_args(argv=None):
@@ -20,6 +21,8 @@ def _parse_args(argv=None):
description=Dirs.get_cmake_help(),
formatter_class=argparse.RawDescriptionHelpFormatter)
+ project.version.add_to_arg_parser(parser)
+
# The hint parameter is basically a workaround for when this is run on a
# CI, _but_ testing another CI is desired. This shouldn't be used in a
# real CI workflow.