Skip to content

Commit ecb553e

Browse files
committed
COMP: Bump vendored teem cmake_minimum_required to 3.10.2
The vendored teem copy used cmake_minimum_required(VERSION 2.4), which CMake >= 4.0 rejects. Bump to 3.10.2 to match the rest of the project. Note: the upstream teem (github.com/mhalle/teem) now requires CMake 3.25; this is a conservative bump for the vendored copy.
1 parent 9d72a92 commit ecb553e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/lib/teem/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#
2222

2323
# This is the root Teem CMakeLists file
24-
cmake_minimum_required(VERSION 2.4)
24+
cmake_minimum_required(VERSION 3.10.2)
2525

2626

2727
# Remove PNG support, as teem uses deprecated libpng calls

src/lib/teem/UseTeemCMakeDemo/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project (TeemSampleProject)
22

3-
cmake_minimum_required(VERSION 2.4)
3+
cmake_minimum_required(VERSION 3.10.2)
44

55
if(COMMAND cmake_policy)
66
cmake_policy(SET CMP0003 NEW)

0 commit comments

Comments
 (0)