Downgrading dependency

Changing to cmake 3.10.2 as the minimum required version to build the software. Decided to use the latest cmake version for Ubuntu 18.04. I use a rolling distro but want to make it accessible
This commit is contained in:
kdeng00
2023-01-22 19:59:45 -05:00
parent c96ee39c6a
commit bc5112df38
+3 -1
View File
@@ -1,6 +1,8 @@
cmake_minimum_required(VERSION 3.23.3) cmake_minimum_required(VERSION 3.10.2)
if(NOT DEFINED VCPKG_ROOT_PATH)
set(VCPKG_ROOT_PATH ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/vcpkg) set(VCPKG_ROOT_PATH ${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/vcpkg)
endif()
message("The vcpkg root path ${VCPKG_ROOT_PATH}") message("The vcpkg root path ${VCPKG_ROOT_PATH}")