Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Feb 13, 2020
1 parent a8e5991 commit 84c7dbe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ cmake_minimum_required(VERSION 3.13)
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release CACHE STRING "Debug or Release")
endif()
project(RPNcalc Fortran)
project(RPNcalc
LANGUAGES Fortran
VERSION 1.2.0
HOMEPAGE_URL https://github.com/scivision/rpn-calc-fortran)
enable_testing()

cmake_policy(SET CMP0076 NEW)
Expand Down
3 changes: 2 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
project('RPNcalc', 'fortran',
default_options : ['default_library=static', 'warning_level=1', 'buildtype=release'],
meson_version: '>=0.51')
meson_version: '>=0.51',
version: '1.2.0')

fc = meson.get_compiler('fortran')
if fc.get_id() == 'gcc'
Expand Down

0 comments on commit 84c7dbe

Please sign in to comment.