Skip to content

Commit

Permalink
Fix: raise minimum required version of CMake to 3.13
Browse files Browse the repository at this point in the history
add_link_options() requires CMake 3.13 or later.
  • Loading branch information
rmisev committed Sep 22, 2023
1 parent 712f806 commit 98c6c19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# FindICU requires 3.7
cmake_minimum_required(VERSION 3.7)
# add_link_options() requires 3.13
cmake_minimum_required(VERSION 3.13)

set(CMAKE_SUPPRESS_REGENERATION true)

Expand Down

0 comments on commit 98c6c19

Please sign in to comment.