Skip to content

Commit

Permalink
Merge pull request #320 from kjvbrt/cmake_version
Browse files Browse the repository at this point in the history
Declaring version in CMake file
  • Loading branch information
kjvbrt authored Nov 1, 2023
2 parents 9c43d61 + e780808 commit 74f5940
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
cmake_minimum_required(VERSION 3.16.9)


project(FCCAnalyses CXX)
project(FCCAnalyses VERSION 0.7.0
LANGUAGES CXX
)

#--- RPATH settings -----------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion bin/fccanalysis
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 74f5940

Please sign in to comment.