mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-05-03 11:04:04 +00:00
8 lines
234 B
CMake
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}")
|