diff options
author | Luke Wilde <lukew@serenityos.org> | 2022-10-06 19:19:31 +0100 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2022-12-25 07:58:58 -0700 |
commit | e9135583bdea7fc5f3afdd9354c308068d51a399 (patch) | |
tree | 01bbb3fe87f9536b8bc984109f2609d8df760afd | |
parent | 2b1d294dc6d92c55135810cc9b404e40309d9314 (diff) | |
download | serenity-e9135583bdea7fc5f3afdd9354c308068d51a399.zip |
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.
-rw-r--r-- | Ladybird/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
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) |