mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
e4a59f664b
Since we upstreamed CMake support for Serenity, we can use the Platform files from upstream instead of keeping our local copy. While not added in this commit, we can add patching capabilities for the platform files similar to what we do for gdb, llvm, gcc, and binutils later.
6 lines
218 B
CMake
6 lines
218 B
CMake
# Note: Update this alongside Toolchain/BuildCMake.sh
|
|
set(version_ok 0)
|
|
if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.25.1)
|
|
set(version_ok 1)
|
|
endif()
|
|
execute_process(COMMAND "${CMAKE_COMMAND}" -E echo "${version_ok}")
|