Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
pull_request:

env:
CMAKE_VERSION: 3.11.4
CMAKE_VERSION: 3.22.2
SEQAN3_NO_VERSION_CHECK: 1
TZ: Europe/Berlin

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

env:
CMAKE_VERSION: 3.11.4
CMAKE_VERSION: 3.22.2
SEQAN3_NO_VERSION_CHECK: 1
TZ: Europe/Berlin

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
build: documentation
build_threads: 2
test_threads: 2
cmake: 3.11.4
cmake: 3.22.2
doxygen: 1.9.3
requires_toolchain: false
requires_ccache: false
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 3.11)
cmake_minimum_required (VERSION 3.22)
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is dangerous: Cmake v3.22 is younger than 3 months and almost everyone will run into build problems! FU has v3.18 on their servers, MPI has v3.16. Which functions of v3.22 are you actually using?


## CUSTOMISE

Expand Down
2 changes: 1 addition & 1 deletion doc/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 3.11)
cmake_minimum_required (VERSION 3.22)

# Find doxygen.
find_package (Doxygen QUIET)
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 3.11)
cmake_minimum_required (VERSION 3.22)

# An object library (without main) to be used in multiple targets.
add_library ("${PROJECT_NAME}_lib" STATIC modules/clustering/hierarchical_clustering_method.cpp
Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 3.11)
cmake_minimum_required (VERSION 3.22)

# Set directories for test output files, input data and binaries.
file (MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/output)
Expand Down
2 changes: 1 addition & 1 deletion test/api/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 3.11)
cmake_minimum_required (VERSION 3.22)

add_api_test (input_file_test.cpp)
target_use_datasources (input_file_test FILES simulated.minimap2.hg19.coordsorted_cutoff.sam)
Expand Down
2 changes: 1 addition & 1 deletion test/cli/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 3.11)
cmake_minimum_required (VERSION 3.22)

add_cli_test(iGenVar_cli_test.cpp)
add_dependencies (iGenVar_cli_test "iGenVar")
Expand Down
2 changes: 1 addition & 1 deletion test/coverage/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 3.8)
cmake_minimum_required (VERSION 3.22)

# Add a custom build type: Coverage

Expand Down
2 changes: 1 addition & 1 deletion test/data/datasources.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 3.11)
cmake_minimum_required (VERSION 3.22)

include (cmake/app_datasources.cmake)

Expand Down