j'utilise Cmake 3.28

This commit is contained in:
François Colin de Verdière 2025-03-27 11:34:24 +01:00
parent 256274dde3
commit 28a71c5dd2

View File

@ -2,7 +2,7 @@
# Set the minimum version of CMake that can be used # Set the minimum version of CMake that can be used
# To find the cmake version run # To find the cmake version run
# $ cmake --version # $ cmake --version
cmake_minimum_required(VERSION 3.30) cmake_minimum_required(VERSION 3.28)
# Set the project name # Set the project name
project (seam-carving) project (seam-carving)
@ -15,4 +15,4 @@ add_executable(seam-carving src/seam-carving.cpp)
target_include_directories(seam-carving target_include_directories(seam-carving
PRIVATE PRIVATE
${PROJECT_SOURCE_DIR}/deps ${PROJECT_SOURCE_DIR}/deps
) )