diff options
author | Andreas Kling <kling@serenityos.org> | 2021-02-07 14:40:36 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-07 14:40:36 +0100 |
commit | ff2438e0ceac3b99248748f6a5caf49c223e041d (patch) | |
tree | 803d42d45e7bd3f635c44d18e7628045434f95c8 /Userland/DevTools/HackStudio/CMakeLists.txt | |
parent | b1f1f5afcf8f3b8a3ca10bcb6aefa05fbb2b35be (diff) | |
download | serenity-ff2438e0ceac3b99248748f6a5caf49c223e041d.zip |
LibGUI+LibCpp: Move C++ syntax highlighter to LibCpp
This makes LibGUI not depend on LibCpp.
Diffstat (limited to 'Userland/DevTools/HackStudio/CMakeLists.txt')
-rw-r--r-- | Userland/DevTools/HackStudio/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/HackStudio/CMakeLists.txt b/Userland/DevTools/HackStudio/CMakeLists.txt index 59406cbcbc..e31a214a62 100644 --- a/Userland/DevTools/HackStudio/CMakeLists.txt +++ b/Userland/DevTools/HackStudio/CMakeLists.txt @@ -33,5 +33,5 @@ set(SOURCES ) serenity_app(HackStudio ICON app-hack-studio) -target_link_libraries(HackStudio LibWeb LibMarkdown LibGUI LibGfx LibCore LibVT LibDebug LibX86 LibDiff LibShell) +target_link_libraries(HackStudio LibWeb LibMarkdown LibGUI LibCpp LibGfx LibCore LibVT LibDebug LibX86 LibDiff LibShell) add_dependencies(HackStudio CppLanguageServer) |