From e9135583bdea7fc5f3afdd9354c308068d51a399 Mon Sep 17 00:00:00 2001 From: Luke Wilde Date: Thu, 6 Oct 2022 19:19:31 +0100 Subject: [PATCH] Ladybird: Make ladybird depend on WebContent This causes CMake to output a WebContent build, without this it would not build WebContent and Ladybird would be unusable since it couldn't find the WebContent executable. --- Ladybird/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Ladybird/CMakeLists.txt b/Ladybird/CMakeLists.txt index 54a221250a..cd145cbcbf 100644 --- a/Ladybird/CMakeLists.txt +++ b/Ladybird/CMakeLists.txt @@ -101,3 +101,4 @@ if(NOT CMAKE_SKIP_INSTALL_RULES) endif() add_subdirectory(WebContent) +add_dependencies(ladybird WebContent)