isle-portable/3rdparty/patch_mbedtls_cmake.cmake
2026-04-03 15:41:57 -07:00

8 lines
234 B
CMake

file(READ "CMakeLists.txt" content)
string(REGEX REPLACE
"cmake_minimum_required\\(VERSION [0-9]+\\.[0-9]+[0-9.]*\\)"
"cmake_minimum_required(VERSION 3.10)"
content "${content}"
)
file(WRITE "CMakeLists.txt" "${content}")