diff --git a/Meta/CMake/Superbuild/CMakeLists.txt b/Meta/CMake/Superbuild/CMakeLists.txt index 17d2d3797a8..a692dc7d18e 100644 --- a/Meta/CMake/Superbuild/CMakeLists.txt +++ b/Meta/CMake/Superbuild/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.16) +cmake_minimum_required(VERSION 3.20) project( SerenitySuperbuild @@ -9,8 +9,6 @@ project( # NOTE: Before CMake 3.19, if a custom command is attached to multiple step targets for Makefile and Visual Studio generators, # it might be run multiple times during the build. Enable new behavior of policy CMP0114 to avoid this. cmake_policy(SET CMP0114 NEW) -macro(ensure_dependencies) -endmacro() get_filename_component( SERENITY_SOURCE_DIR "${PROJECT_SOURCE_DIR}/../../.." @@ -90,8 +88,6 @@ ExternalProject_Add( ${console_access} ) -ensure_dependencies(lagom) - # Collect options for serenity build set(serenity_options "") macro(serenity_option name) @@ -119,5 +115,3 @@ ExternalProject_Add( STEP_TARGETS configure install ${console_access} ) - -ensure_dependencies(serenity)