Skip to content

Commit 4b1e113

Browse files
committed
cmake policy template
1 parent e5a1668 commit 4b1e113

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include(cmake/compiler_find.cmake)
55

66
project(nc4fortran
77
LANGUAGES C Fortran
8-
VERSION 1.1.1
8+
VERSION 1.1.2
99
DESCRIPTION "thin, light object-oriented NetCDF4 Fortran interface"
1010
HOMEPAGE_URL https://github.com/geospace-code/nc4fortran)
1111

cmake/policy.cmake

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ if(CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR)
44
message(FATAL_ERROR "use cmake -B build or similar to avoid building in-source, which is messy")
55
endif()
66

7-
if(CMAKE_VERSION VERSION_EQUAL 3.19.0-rc1)
8-
message(FATAL_ERROR "CMake 3.19.0-rc1 has breaking bugs for any project. Please use a different CMake version.")
9-
endif()
10-
117
if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.20)
128
# explicit source file extensions
139
cmake_policy(SET CMP0115 NEW)

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project('nc4fortran', 'fortran',
22
meson_version : '>=0.52.0',
3-
version: '1.1.1',
3+
version: '1.1.2',
44
default_options : ['default_library=static', 'buildtype=release', 'warning_level=3'])
55

66
subdir('meson')

0 commit comments

Comments
 (0)