Skip to content

Commit

Permalink
Merge pull request #51 from vikasnkumar/main
Browse files Browse the repository at this point in the history
Allow for Debian 11 and Ubuntu 22.04 LTS support with lower version of CMake
  • Loading branch information
mario4tier authored Dec 24, 2024
2 parents 01bad68 + 51c4015 commit a4b4771
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
cmake_minimum_required(VERSION 3.30)
cmake_minimum_required(VERSION 3.18)
if (CMAKE_VERSION VERSION_LESS "3.30" AND WIN32)
message(FATAL_ERROR "For Windows systems you need CMake Version 3.30")
endif (CMAKE_VERSION VERSION_LESS "3.30" AND WIN32)

project(ta-lib)

Expand Down

0 comments on commit a4b4771

Please sign in to comment.