diff options
author | Timothy Flynn <trflynn89@pm.me> | 2023-05-16 15:16:45 -0400 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2023-05-16 13:22:23 -0700 |
commit | d1a1b1ab75e69444a68b24ba7a20d9b22d038f91 (patch) | |
tree | 17fdfe54af996ffcd10636bfce15f12f76d57f51 /Userland/DevTools | |
parent | 77008d4bac0b2eaf4c46e59e3d262fd89d00e355 (diff) | |
download | serenity-d1a1b1ab75e69444a68b24ba7a20d9b22d038f91.zip |
LibWebView: Remove the DumpLayoutTree program
This program's purpose is now achieved with headless-browser, which has
the added benefit of being runnable outside of Serenity.
Diffstat (limited to 'Userland/DevTools')
-rw-r--r-- | Userland/DevTools/HackStudio/ProjectBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/HackStudio/ProjectBuilder.cpp b/Userland/DevTools/HackStudio/ProjectBuilder.cpp index 91f3141721..a41a9006b4 100644 --- a/Userland/DevTools/HackStudio/ProjectBuilder.cpp +++ b/Userland/DevTools/HackStudio/ProjectBuilder.cpp @@ -167,7 +167,7 @@ DeprecatedString ProjectBuilder::generate_cmake_file_content() const builder.appendff("add_library({} SHARED IMPORTED GLOBAL)\n", library.key); builder.appendff("set_target_properties({} PROPERTIES IMPORTED_LOCATION {})\n", library.key, library.value->path); - if (library.key == "LibCStaticWithoutDeps"sv || library.key == "DumpLayoutTree"sv) + if (library.key == "LibCStaticWithoutDeps"sv) continue; // We need to specify the dependencies for each defined library in CMake because some applications do not specify |