From e7808083ff86e9188eaeae4efb621d236f6eb419 Mon Sep 17 00:00:00 2001 From: Juraj Smiesko Date: Wed, 1 Nov 2023 10:57:28 +0100 Subject: [PATCH] Declaring version in CMake file --- CMakeLists.txt | 4 +++- bin/fccanalysis | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index beacc914e5..9f31aee7b0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,9 @@ cmake_minimum_required(VERSION 3.16.9) -project(FCCAnalyses CXX) +project(FCCAnalyses VERSION 0.7.0 + LANGUAGES CXX +) #--- RPATH settings ----------------------------------------------------------- diff --git a/bin/fccanalysis b/bin/fccanalysis index 80bf54b7e1..0e344d9524 100755 --- a/bin/fccanalysis +++ b/bin/fccanalysis @@ -30,7 +30,7 @@ class MultiLineFormatter(logging.Formatter): def main(): - parser = argparse.ArgumentParser(description='FCCAnalyses parser') + parser = argparse.ArgumentParser(description='FCCAnalyses v0.7.0') verbosity_argument_group = parser.add_mutually_exclusive_group() verbosity_argument_group.add_argument('-v', '--verbose', action='store_true',